pub enum TargetArchitecture {
X86_64,
Aarch64,
Arx64,
Arm32,
Riscv32,
Riscv64,
Wasm32,
Wasm64,
PowerPC64,
Unknown,
}Variants§
Trait Implementations§
Source§impl Clone for TargetArchitecture
impl Clone for TargetArchitecture
Source§fn clone(&self) -> TargetArchitecture
fn clone(&self) -> TargetArchitecture
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TargetArchitecture
impl Debug for TargetArchitecture
Source§impl Display for TargetArchitecture
impl Display for TargetArchitecture
Source§impl FromStr for TargetArchitecture
impl FromStr for TargetArchitecture
Source§impl PartialEq for TargetArchitecture
impl PartialEq for TargetArchitecture
Source§fn eq(&self, other: &TargetArchitecture) -> bool
fn eq(&self, other: &TargetArchitecture) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for TargetArchitecture
impl Eq for TargetArchitecture
impl StructuralPartialEq for TargetArchitecture
Auto Trait Implementations§
impl Freeze for TargetArchitecture
impl RefUnwindSafe for TargetArchitecture
impl Send for TargetArchitecture
impl Sync for TargetArchitecture
impl Unpin for TargetArchitecture
impl UnsafeUnpin for TargetArchitecture
impl UnwindSafe for TargetArchitecture
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