Enum oci_spec::runtime::LinuxSeccompOperator [−][src]
#[repr(u32)]
pub enum LinuxSeccompOperator {
ScmpCmpNe,
ScmpCmpLt,
ScmpCmpLe,
ScmpCmpEq,
ScmpCmpGe,
ScmpCmpGt,
ScmpCmpMaskedEq,
}Expand description
The seccomp operator to be used for args.
Variants
Refers to the SCMP_CMP_NE operator (not equal).
Refers to the SCMP_CMP_LT operator (less than).
Refers to the SCMP_CMP_LE operator (less equal).
Refers to the SCMP_CMP_EQ operator (equal to).
Refers to the SCMP_CMP_GE operator (greater equal).
Refers to the SCMP_CMP_GT operator (greater than).
Refers to the SCMP_CMP_MASKED_EQ operator (masked equal).
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for LinuxSeccompOperator
impl Send for LinuxSeccompOperator
impl Sync for LinuxSeccompOperator
impl Unpin for LinuxSeccompOperator
impl UnwindSafe for LinuxSeccompOperator
Blanket Implementations
Mutably borrows from an owned value. Read more