#[repr(C)]pub struct FilesetEntryCommand {
pub cmd: u32,
pub cmdsize: u32,
pub vmaddr: u64,
pub fileoff: u64,
pub entry_id: LcStr,
pub reserved: u32,
}Expand description
The LC_FILESET_ENTRY command is used for Mach-O filesets which contain multiple Mach-O’s, such as the dyld shared cache and kernelcache
Fields§
§cmd: u32LC_FILSET_ENTRY
cmdsize: u32§vmaddr: u64memory address of the dylib
fileoff: u64file offset of the dylib
entry_id: LcStrcontained entry id
reserved: u32reserved
Trait Implementations§
Source§impl Clone for FilesetEntryCommand
impl Clone for FilesetEntryCommand
Source§fn clone(&self) -> FilesetEntryCommand
fn clone(&self) -> FilesetEntryCommand
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 FilesetEntryCommand
Source§impl Debug for FilesetEntryCommand
impl Debug for FilesetEntryCommand
Source§impl FromCtx<Endian> for FilesetEntryCommand
impl FromCtx<Endian> for FilesetEntryCommand
Source§impl<'a> IntoCtx<Endian> for &'a FilesetEntryCommand
impl<'a> IntoCtx<Endian> for &'a FilesetEntryCommand
Source§impl IntoCtx<Endian> for FilesetEntryCommand
impl IntoCtx<Endian> for FilesetEntryCommand
Source§impl<'a> TryFromCtx<'a, Endian> for FilesetEntryCommandwhere
FilesetEntryCommand: 'a,
impl<'a> TryFromCtx<'a, Endian> for FilesetEntryCommandwhere
FilesetEntryCommand: 'a,
Source§impl<'a> TryIntoCtx<Endian> for &'a FilesetEntryCommand
impl<'a> TryIntoCtx<Endian> for &'a FilesetEntryCommand
Auto Trait Implementations§
impl Freeze for FilesetEntryCommand
impl RefUnwindSafe for FilesetEntryCommand
impl Send for FilesetEntryCommand
impl Sync for FilesetEntryCommand
impl Unpin for FilesetEntryCommand
impl UnsafeUnpin for FilesetEntryCommand
impl UnwindSafe for FilesetEntryCommand
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