Struct seccomp_data

#[repr(C)]
pub struct seccomp_data { pub nr: c_int, pub arch: __u32, pub instruction_pointer: __u64, pub args: [__u64; 6] }

Fields

nr: c_int
arch: __u32
instruction_pointer: __u64
args: [__u64; 6]

Trait Implementations

impl Clone for seccomp_data

fn clone(&self) -> seccomp_data

impl Copy for seccomp_data

impl Debug for seccomp_data

fn fmt(&self, f: &mut Formatter<'_>) -> Result

impl Eq for seccomp_data

impl Hash for seccomp_data

fn hash<__H: Hasher>(&self, state: &mut __H)

impl PartialEq for seccomp_data

fn eq(&self, other: &seccomp_data) -> bool

impl StructuralPartialEq for seccomp_data

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 UnsafeUnpin for seccomp_data

impl UnwindSafe for seccomp_data

Blanket Implementations

impl<T> Any for seccomp_data where T: 'static + ?Sized,

fn type_id(&self) -> TypeId

impl<T> Borrow<T> for seccomp_data where T: ?Sized,

fn borrow(&self) -> &T

impl<T> BorrowMut<T> for seccomp_data where T: ?Sized,

fn borrow_mut(&mut self) -> &mut T

impl<T> CloneToUninit for seccomp_data where T: Clone,

unsafe fn clone_to_uninit(&self, dest: *mut u8)

impl<T> From<T> for seccomp_data

fn from(t: T) -> T

Returns the argument unchanged.

impl<T, U> Into<U> for seccomp_data 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 seccomp_data where U: Into<T>,

type Error = never;
fn try_from(value: U) -> Result<T, never>

impl<T, U> TryInto<U> for seccomp_data where U: TryFrom<T>,

type Error = <U as TryFrom<T>>::Error;
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>