#[repr(C)]pub enum scmp_arch {
Show 17 variants
SCMP_ARCH_NATIVE = 0,
SCMP_ARCH_X86 = 1_073_741_827,
SCMP_ARCH_X86_64 = -1_073_741_762,
SCMP_ARCH_X32 = 1_073_741_886,
SCMP_ARCH_ARM = 1_073_741_864,
SCMP_ARCH_AARCH64 = -1_073_741_641,
SCMP_ARCH_MIPS = 8,
SCMP_ARCH_MIPS64 = -2_147_483_640,
SCMP_ARCH_MIPS64N32 = -1_610_612_728,
SCMP_ARCH_MIPSEL = 1_073_741_832,
SCMP_ARCH_MIPSEL64 = -1_073_741_816,
SCMP_ARCH_MIPSEL64N32 = -536_870_904,
SCMP_ARCH_PPC = 20,
SCMP_ARCH_PPC64 = -2_147_483_627,
SCMP_ARCH_PPC64LE = -1_073_741_803,
SCMP_ARCH_S390 = 22,
SCMP_ARCH_S390X = -2_147_483_626,
}Expand description
Architecutres
Variants§
SCMP_ARCH_NATIVE = 0
SCMP_ARCH_X86 = 1_073_741_827
SCMP_ARCH_X86_64 = -1_073_741_762
SCMP_ARCH_X32 = 1_073_741_886
SCMP_ARCH_ARM = 1_073_741_864
SCMP_ARCH_AARCH64 = -1_073_741_641
SCMP_ARCH_MIPS = 8
SCMP_ARCH_MIPS64 = -2_147_483_640
SCMP_ARCH_MIPS64N32 = -1_610_612_728
SCMP_ARCH_MIPSEL = 1_073_741_832
SCMP_ARCH_MIPSEL64 = -1_073_741_816
SCMP_ARCH_MIPSEL64N32 = -536_870_904
SCMP_ARCH_PPC = 20
SCMP_ARCH_PPC64 = -2_147_483_627
SCMP_ARCH_PPC64LE = -1_073_741_803
SCMP_ARCH_S390 = 22
SCMP_ARCH_S390X = -2_147_483_626
Trait Implementations§
Auto Trait Implementations§
impl Freeze for scmp_arch
impl RefUnwindSafe for scmp_arch
impl Send for scmp_arch
impl Sync for scmp_arch
impl Unpin for scmp_arch
impl UnwindSafe for scmp_arch
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