Enum libseccomp::ScmpArch[][src]

#[non_exhaustive]
pub enum ScmpArch {
Show variants Native, X86, X8664, X32, Arm, Aarch64, Mips, Mips64, Mips64N32, Mipsel, Mipsel64, Mipsel64N32, Ppc, Ppc64, Ppc64Le, S390, S390X, Parisc, Parisc64, Riscv64,
}
Expand description

ScmpArch represents a CPU architecture. Seccomp can restrict syscalls on a per-architecture basis.

Variants (Non-exhaustive)

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Native
Expand description

The native architecture token

X86
Expand description

The x86 (32-bit) architecture token

X8664
Expand description

The x86-64 (64-bit) architecture token

X32
Expand description

The x32 (32-bit x86_64) architecture token

Arm
Expand description

The ARM architecture token

Aarch64
Expand description

The AARCH64 architecture token

Mips
Expand description

The MIPS architecture token

Mips64
Expand description

The MIPS (64-bit) architecture token

Mips64N32
Expand description

The MIPS64N32 architecture token

Mipsel
Expand description

The MIPSEL architecture token

Mipsel64
Expand description

The MIPSEL (64-bit) architecture token

Mipsel64N32
Expand description

The MIPSEL64N32 architecture token

Ppc
Expand description

The PowerPC architecture token

Ppc64
Expand description

The PowerPC (64-bit) architecture token

Ppc64Le
Expand description

The PowerPC64LE architecture token

S390
Expand description

The S390 architecture token

S390X
Expand description

The S390X architecture token

Parisc
Expand description

The PA-RISC hppa architecture token

Parisc64
Expand description

The PA-RISC (64-bit) hppa architecture token

Riscv64
Expand description

The RISC-V architecture token

Implementations

impl ScmpArch[src]

pub fn to_native(&self) -> u32[src]

Trait Implementations

impl Clone for ScmpArch[src]

fn clone(&self) -> ScmpArch[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for ScmpArch[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl FromStr for ScmpArch[src]

type Err = SeccompError

The associated error which can be returned from parsing.

fn from_str(s: &str) -> Result<Self>[src]

Parses a string s to return a value of this type. Read more

impl PartialEq<ScmpArch> for ScmpArch[src]

fn eq(&self, other: &ScmpArch) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl Copy for ScmpArch[src]

impl Eq for ScmpArch[src]

impl StructuralEq for ScmpArch[src]

impl StructuralPartialEq for ScmpArch[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.