Struct ptrace_syscall_info
#[repr(C)]
pub struct ptrace_syscall_info { pub op: __u8, pub flags: __u16, pub arch: __u32, pub instruction_pointer: __u64, pub stack_pointer: __u64, pub u: __c_anonymous_ptrace_syscall_info_data, /* private fields */ }
Fields
op: __u8flags: __u16arch: __u32instruction_pointer: __u64stack_pointer: __u64u: __c_anonymous_ptrace_syscall_info_data
Trait Implementations
impl Clone for ptrace_syscall_info
fn clone(&self) -> ptrace_syscall_info
impl Copy for ptrace_syscall_info
impl Debug for ptrace_syscall_info
fn fmt(&self, f: &mut Formatter<'_>) -> Result
impl Eq for ptrace_syscall_info
impl Hash for ptrace_syscall_info
fn hash<__H: Hasher>(&self, state: &mut __H)
impl PartialEq for ptrace_syscall_info
fn eq(&self, other: &ptrace_syscall_info) -> bool
impl StructuralPartialEq for ptrace_syscall_info
Auto Trait Implementations
impl Freeze for ptrace_syscall_info
impl RefUnwindSafe for ptrace_syscall_info
impl Send for ptrace_syscall_info
impl Sync for ptrace_syscall_info
impl Unpin for ptrace_syscall_info
impl UnsafeUnpin for ptrace_syscall_info
impl UnwindSafe for ptrace_syscall_info
Blanket Implementations
impl<T> Any for ptrace_syscall_info
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for ptrace_syscall_info
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for ptrace_syscall_info
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> CloneToUninit for ptrace_syscall_info
where
T: Clone,
unsafe fn clone_to_uninit(&self, dest: *mut u8)
impl<T> From<T> for ptrace_syscall_info
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into<U> for ptrace_syscall_info
where
U: From<T>,
fn into(self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom<U> for ptrace_syscall_info
where
U: Into<T>,
type Error = never;fn try_from(value: U) -> Result<T, never>
impl<T, U> TryInto<U> for ptrace_syscall_info
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>