Enum OciArchitecture
pub enum OciArchitecture {
Amd64,
Arm64,
Arm,
I386,
Ppc64le,
Riscv64,
S390x,
Wasm,
Unknown,
Custom(String),
}Expand description
OCI architecture labels.
Variants§
Implementations§
§impl OciArchitecture
impl OciArchitecture
Trait Implementations§
§impl Clone for OciArchitecture
impl Clone for OciArchitecture
§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 more§impl Debug for OciArchitecture
impl Debug for OciArchitecture
§impl Display for OciArchitecture
impl Display for OciArchitecture
§impl FromStr for OciArchitecture
impl FromStr for OciArchitecture
§impl Hash for OciArchitecture
impl Hash for OciArchitecture
§impl Ord for OciArchitecture
impl Ord for OciArchitecture
§impl PartialEq for OciArchitecture
impl PartialEq for OciArchitecture
§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