pub enum MachineType {
UNKNOWN = 0,
AMD64 = 34_404,
ARM = 448,
ARM64 = 43_620,
I386 = 332,
IA64 = 512,
THUMB = 450,
}Variants§
Trait Implementations§
Source§impl Clone for MachineType
impl Clone for MachineType
Source§fn clone(&self) -> MachineType
fn clone(&self) -> MachineType
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 MachineType
impl Debug for MachineType
Source§impl Default for MachineType
impl Default for MachineType
Source§fn default() -> MachineType
fn default() -> MachineType
Returns the “default value” for a type. Read more
Source§impl From<u16> for MachineType
impl From<u16> for MachineType
Source§impl PartialEq for MachineType
impl PartialEq for MachineType
Source§impl Serialize for MachineType
impl Serialize for MachineType
impl Copy for MachineType
impl StructuralPartialEq for MachineType
Auto Trait Implementations§
impl Freeze for MachineType
impl RefUnwindSafe for MachineType
impl Send for MachineType
impl Sync for MachineType
impl Unpin for MachineType
impl UnwindSafe for MachineType
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