pub enum SeccompilerComparator {
Eq,
Ge,
Gt,
Le,
Lt,
MaskedEq(u64),
Ne,
}Expand description
Comparison to perform when matching a condition.
Variants§
Eq
Argument value is equal to the specified value.
Ge
Argument value is greater than or equal to the specified value.
Gt
Argument value is greater than specified value.
Le
Argument value is less than or equal to the specified value.
Lt
Argument value is less than specified value.
MaskedEq(u64)
Masked bits of argument value are equal to masked bits of specified value.
Ne
Argument value is not equal to specified value.
Trait Implementations§
Source§impl Clone for SeccompCmpOp
impl Clone for SeccompCmpOp
Source§fn clone(&self) -> SeccompCmpOp
fn clone(&self) -> SeccompCmpOp
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SeccompCmpOp
impl Debug for SeccompCmpOp
Source§impl PartialEq for SeccompCmpOp
impl PartialEq for SeccompCmpOp
impl Eq for SeccompCmpOp
impl StructuralPartialEq for SeccompCmpOp
Auto Trait Implementations§
impl Freeze for SeccompCmpOp
impl RefUnwindSafe for SeccompCmpOp
impl Send for SeccompCmpOp
impl Sync for SeccompCmpOp
impl Unpin for SeccompCmpOp
impl UnwindSafe for SeccompCmpOp
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