#[repr(C)]pub struct seccomp_data {
pub nr: c_int,
pub arch: u32,
pub instruction_pointer: u64,
pub args: [u64; 6],
}Expand description
Syscall data.
Fields§
§nr: c_int§arch: u32§instruction_pointer: u64§args: [u64; 6]Auto Trait Implementations§
impl Freeze for seccomp_data
impl RefUnwindSafe for seccomp_data
impl Send for seccomp_data
impl Sync for seccomp_data
impl Unpin for seccomp_data
impl UnwindSafe for seccomp_data
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