pub enum NativeBinaryFormat {
Elf,
MachO,
PeCoff,
}Variants§
Trait Implementations§
Source§impl Clone for NativeBinaryFormat
impl Clone for NativeBinaryFormat
Source§fn clone(&self) -> NativeBinaryFormat
fn clone(&self) -> NativeBinaryFormat
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 moreimpl Copy for NativeBinaryFormat
Source§impl Debug for NativeBinaryFormat
impl Debug for NativeBinaryFormat
impl Eq for NativeBinaryFormat
Source§impl PartialEq for NativeBinaryFormat
impl PartialEq for NativeBinaryFormat
Source§fn eq(&self, other: &NativeBinaryFormat) -> bool
fn eq(&self, other: &NativeBinaryFormat) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NativeBinaryFormat
Auto Trait Implementations§
impl Freeze for NativeBinaryFormat
impl RefUnwindSafe for NativeBinaryFormat
impl Send for NativeBinaryFormat
impl Sync for NativeBinaryFormat
impl Unpin for NativeBinaryFormat
impl UnsafeUnpin for NativeBinaryFormat
impl UnwindSafe for NativeBinaryFormat
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