[][src]Struct seccomp::Compare

pub struct Compare { /* fields omitted */ }

Comparison definition builder

Implementations

impl Compare[src]

pub fn arg(arg_num: u32) -> Self[src]

argument number, starting at 0

pub fn using(self, op: Op) -> Self[src]

Comparison operator

pub fn with(self, datum: u64) -> Self[src]

Datum to compare with

pub fn and(self, datum: u64) -> Self[src]

Second datum

pub fn build(self) -> Option<Cmp>[src]

build comparison definition

Auto Trait Implementations

impl RefUnwindSafe for Compare

impl Send for Compare

impl Sync for Compare

impl Unpin for Compare

impl UnwindSafe for Compare

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.