pub enum OciArchitecture {
Amd64,
Arm64,
Arm,
I386,
Ppc64le,
Riscv64,
S390x,
Wasm,
Unknown,
Custom(String),
}Expand description
OCI architecture labels.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for OciArchitecture
impl Clone for OciArchitecture
Source§fn clone(&self) -> OciArchitecture
fn clone(&self) -> OciArchitecture
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 OciArchitecture
impl Debug for OciArchitecture
Source§impl Display for OciArchitecture
impl Display for OciArchitecture
Source§impl FromStr for OciArchitecture
impl FromStr for OciArchitecture
Source§impl Hash for OciArchitecture
impl Hash for OciArchitecture
Source§impl Ord for OciArchitecture
impl Ord for OciArchitecture
Source§fn cmp(&self, other: &OciArchitecture) -> Ordering
fn cmp(&self, other: &OciArchitecture) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for OciArchitecture
impl PartialEq for OciArchitecture
Source§impl PartialOrd for OciArchitecture
impl PartialOrd for OciArchitecture
impl Eq for OciArchitecture
impl StructuralPartialEq for OciArchitecture
Auto Trait Implementations§
impl Freeze for OciArchitecture
impl RefUnwindSafe for OciArchitecture
impl Send for OciArchitecture
impl Sync for OciArchitecture
impl Unpin for OciArchitecture
impl UnsafeUnpin for OciArchitecture
impl UnwindSafe for OciArchitecture
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