pub enum MachineArch {
X86_64,
Aarch64,
}
Expand description
The machine architecture of the VM.
Variants§
Trait Implementations§
Source§impl Clone for MachineArch
impl Clone for MachineArch
Source§fn clone(&self) -> MachineArch
fn clone(&self) -> MachineArch
Returns a copy 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 MachineArch
impl Debug for MachineArch
Source§impl PartialEq for MachineArch
impl PartialEq for MachineArch
impl Copy for MachineArch
impl Eq for MachineArch
impl StructuralPartialEq for MachineArch
Auto Trait Implementations§
impl Freeze for MachineArch
impl RefUnwindSafe for MachineArch
impl Send for MachineArch
impl Sync for MachineArch
impl Unpin for MachineArch
impl UnwindSafe for MachineArch
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