#[repr(C)]pub struct ptrace_lwpinfo {
pub pl_lwpid: lwpid_t,
pub pl_event: c_int,
pub pl_flags: c_int,
pub pl_sigmask: sigset_t,
pub pl_siglist: sigset_t,
pub pl_siginfo: siginfo_t,
pub pl_tdname: [c_char; 20],
pub pl_child_pid: pid_t,
pub pl_syscall_code: c_uint,
pub pl_syscall_narg: c_uint,
}Fields§
§pl_lwpid: lwpid_t§pl_event: c_int§pl_flags: c_int§pl_sigmask: sigset_t§pl_siglist: sigset_t§pl_siginfo: siginfo_t§pl_tdname: [c_char; 20]§pl_child_pid: pid_t§pl_syscall_code: c_uint§pl_syscall_narg: c_uintTrait Implementations§
Source§impl Clone for ptrace_lwpinfo
impl Clone for ptrace_lwpinfo
Source§fn clone(&self) -> ptrace_lwpinfo
fn clone(&self) -> ptrace_lwpinfo
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ptrace_lwpinfo
impl Debug for ptrace_lwpinfo
impl Copy for ptrace_lwpinfo
Auto Trait Implementations§
impl Freeze for ptrace_lwpinfo
impl RefUnwindSafe for ptrace_lwpinfo
impl !Send for ptrace_lwpinfo
impl !Sync for ptrace_lwpinfo
impl Unpin for ptrace_lwpinfo
impl UnwindSafe for ptrace_lwpinfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more