[][src]Enum buildkit_frontend::oci::Architecture

pub enum Architecture {
    Amd64,
    I386,
    ARM,
    ARM64,
    PPC64le,
    PPC64,
    Mips64le,
    Mips64,
    Mipsle,
    Mips,
    S390x,
}

Variants

Amd64

64-bit x86, the most mature port

I386

32-bit x86

ARM

32-bit ARM

ARM64

64-bit ARM

PPC64le

PowerPC 64-bit, little-endian

PPC64

PowerPC 64-bit, big-endian

Mips64le

MIPS 64-bit, little-endian

Mips64

MIPS 64-bit, big-endian

Mipsle

MIPS 32-bit, little-endian

Mips

MIPS 32-bit, big-endian

S390x

IBM System z 64-bit, big-endian

Trait Implementations

impl Clone for Architecture[src]

impl PartialEq<Architecture> for Architecture[src]

impl Copy for Architecture[src]

impl Debug for Architecture[src]

impl Serialize for Architecture[src]

impl<'de> Deserialize<'de> for Architecture[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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.

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

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

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

impl<T> Erased for T

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]