#[repr(C)]pub struct SCMP_ARG_CMP {
pub arg: c_uint,
pub op: SCMP_COMPARE,
pub oprand1: u64,
pub oprand2: u64,
}Expand description
A struct, replace SCMP_CMP
Fields§
§arg: c_uint§op: SCMP_COMPAREargument number, starting at 0
oprand1: u64the comparison op, e.g. SCMP_CMP_*
oprand2: u64Trait Implementations§
Auto Trait Implementations§
impl Freeze for SCMP_ARG_CMP
impl RefUnwindSafe for SCMP_ARG_CMP
impl Send for SCMP_ARG_CMP
impl Sync for SCMP_ARG_CMP
impl Unpin for SCMP_ARG_CMP
impl UnwindSafe for SCMP_ARG_CMP
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