pub enum LoadCommand {
Segment64(SegmentCommand64, Vec<Section64>),
Symtab(SymtabCommand),
UnixThread(UnixThreadCommand),
Dysymtab(DysymtabCommand),
Uuid(UuidCommand),
BuildVersion(BuildVersionCommand, Vec<BuildToolVersion>),
SourceVersion(SourceVersionCommand),
Unsupported(u32, Vec<u8>),
}
Variants§
Segment64(SegmentCommand64, Vec<Section64>)
Symtab(SymtabCommand)
UnixThread(UnixThreadCommand)
Dysymtab(DysymtabCommand)
Uuid(UuidCommand)
BuildVersion(BuildVersionCommand, Vec<BuildToolVersion>)
SourceVersion(SourceVersionCommand)
Unsupported(u32, Vec<u8>)
Implementations§
Trait Implementations§
Source§impl Clone for LoadCommand
impl Clone for LoadCommand
Source§fn clone(&self) -> LoadCommand
fn clone(&self) -> LoadCommand
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 LoadCommand
impl Debug for LoadCommand
Source§impl PartialEq for LoadCommand
impl PartialEq for LoadCommand
impl Eq for LoadCommand
impl StructuralPartialEq for LoadCommand
Auto Trait Implementations§
impl Freeze for LoadCommand
impl RefUnwindSafe for LoadCommand
impl Send for LoadCommand
impl Sync for LoadCommand
impl Unpin for LoadCommand
impl UnwindSafe for LoadCommand
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