pub enum SeccompArch {
Show 18 variants
ScmpArchAarch64,
ScmpArchArm,
ScmpArchMips,
ScmpArchMips64,
ScmpArchMips64N32,
ScmpArchMipsel,
ScmpArchMipsel64,
ScmpArchMipsel64N32,
ScmpArchParisc,
ScmpArchParisc64,
ScmpArchPpc,
ScmpArchPpc64,
ScmpArchPpc64Le,
ScmpArchS390,
ScmpArchS390X,
ScmpArchX32,
ScmpArchX86,
ScmpArchX8664,
}
Variants§
ScmpArchAarch64
ScmpArchArm
ScmpArchMips
ScmpArchMips64
ScmpArchMips64N32
ScmpArchMipsel
ScmpArchMipsel64
ScmpArchMipsel64N32
ScmpArchParisc
ScmpArchParisc64
ScmpArchPpc
ScmpArchPpc64
ScmpArchPpc64Le
ScmpArchS390
ScmpArchS390X
ScmpArchX32
ScmpArchX86
ScmpArchX8664
Trait Implementations§
Source§impl Clone for SeccompArch
impl Clone for SeccompArch
Source§fn clone(&self) -> SeccompArch
fn clone(&self) -> SeccompArch
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 SeccompArch
impl Debug for SeccompArch
Source§impl<'de> Deserialize<'de> for SeccompArch
impl<'de> Deserialize<'de> for SeccompArch
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 SeccompArch
impl PartialEq for SeccompArch
Source§impl Serialize for SeccompArch
impl Serialize for SeccompArch
impl StructuralPartialEq for SeccompArch
Auto Trait Implementations§
impl Freeze for SeccompArch
impl RefUnwindSafe for SeccompArch
impl Send for SeccompArch
impl Sync for SeccompArch
impl Unpin for SeccompArch
impl UnwindSafe for SeccompArch
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