pub struct SyscallArg {
pub index: i64,
pub op: SeccompOperators,
pub value: i64,
pub value_two: Option<i64>,
}
Fields§
§index: i64
§op: SeccompOperators
§value: i64
§value_two: Option<i64>
Trait Implementations§
Source§impl Clone for SyscallArg
impl Clone for SyscallArg
Source§fn clone(&self) -> SyscallArg
fn clone(&self) -> SyscallArg
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 SyscallArg
impl Debug for SyscallArg
Source§impl<'de> Deserialize<'de> for SyscallArg
impl<'de> Deserialize<'de> for SyscallArg
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
Source§impl PartialEq for SyscallArg
impl PartialEq for SyscallArg
Source§impl Serialize for SyscallArg
impl Serialize for SyscallArg
impl StructuralPartialEq for SyscallArg
Auto Trait Implementations§
impl Freeze for SyscallArg
impl RefUnwindSafe for SyscallArg
impl Send for SyscallArg
impl Sync for SyscallArg
impl Unpin for SyscallArg
impl UnwindSafe for SyscallArg
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