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: __u8
flags: __u16
arch: __u32
instruction_pointer: __u64
stack_pointer: __u64
u: __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) -> T

Returns the argument unchanged.

impl<T, U> Into<U> for ptrace_syscall_info where U: From<T>,

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses 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>