pub enum TargetArch {
x86_64,
aarch64,
riscv64,
}
Expand description
Supported target architectures.
Variants§
Trait Implementations§
Source§impl Clone for TargetArch
impl Clone for TargetArch
Source§fn clone(&self) -> TargetArch
fn clone(&self) -> TargetArch
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TargetArch
impl Debug for TargetArch
Source§impl PartialEq for TargetArch
impl PartialEq for TargetArch
Source§impl TryFrom<&str> for TargetArch
impl TryFrom<&str> for TargetArch
impl Copy for TargetArch
impl Eq for TargetArch
impl StructuralPartialEq for TargetArch
Auto Trait Implementations§
impl Freeze for TargetArch
impl RefUnwindSafe for TargetArch
impl Send for TargetArch
impl Sync for TargetArch
impl Unpin for TargetArch
impl UnwindSafe for TargetArch
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