pub struct OciSeccompArg {
pub index: u32,
pub value: u64,
pub value_two: u64,
pub op: String,
}Expand description
Seccomp syscall argument filter.
Fields§
§index: u32Argument index (0-based)
value: u64Value to compare against
value_two: u64Second value for masked operations
op: StringComparison operator (e.g. “SCMP_CMP_EQ”, “SCMP_CMP_MASKED_EQ”)
Trait Implementations§
Source§impl Clone for OciSeccompArg
impl Clone for OciSeccompArg
Source§fn clone(&self) -> OciSeccompArg
fn clone(&self) -> OciSeccompArg
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 OciSeccompArg
impl Debug for OciSeccompArg
Source§impl<'de> Deserialize<'de> for OciSeccompArg
impl<'de> Deserialize<'de> for OciSeccompArg
Source§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 Freeze for OciSeccompArg
impl RefUnwindSafe for OciSeccompArg
impl Send for OciSeccompArg
impl Sync for OciSeccompArg
impl Unpin for OciSeccompArg
impl UnsafeUnpin for OciSeccompArg
impl UnwindSafe for OciSeccompArg
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