Struct object::macho::PreboundDylibCommand
source · #[repr(C)]pub struct PreboundDylibCommand<E: Endian> {
pub cmd: U32<E>,
pub cmdsize: U32<E>,
pub name: LcStr<E>,
pub nmodules: U32<E>,
pub linked_modules: LcStr<E>,
}
Fields§
§cmd: U32<E>
LC_PREBOUND_DYLIB
cmdsize: U32<E>
includes strings
name: LcStr<E>
library’s path name
nmodules: U32<E>
number of modules in library
linked_modules: LcStr<E>
bit vector of linked modules
Trait Implementations§
source§impl<E: Clone + Endian> Clone for PreboundDylibCommand<E>
impl<E: Clone + Endian> Clone for PreboundDylibCommand<E>
source§fn clone(&self) -> PreboundDylibCommand<E>
fn clone(&self) -> PreboundDylibCommand<E>
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 more