#[repr(C)]pub struct FilesetEntryCommand {
pub cmd: u32,
pub cmdsize: u32,
pub vmaddr: u64,
pub fileoff: u64,
pub entry_id: u32,
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: u32contained 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 · 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 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,
type Error = Error
fn try_from_ctx( src: &'a [u8], ctx: Endian, ) -> Result<(FilesetEntryCommand, usize), <FilesetEntryCommand as TryFromCtx<'a, Endian>>::Error>
Source§impl<'a> TryIntoCtx<Endian> for &'a FilesetEntryCommand
impl<'a> TryIntoCtx<Endian> for &'a FilesetEntryCommand
type Error = Error
fn try_into_ctx( self, dst: &mut [u8], ctx: Endian, ) -> Result<usize, <&'a FilesetEntryCommand as TryIntoCtx<Endian>>::Error>
Source§impl TryIntoCtx<Endian> for FilesetEntryCommand
impl TryIntoCtx<Endian> for FilesetEntryCommand
type Error = Error
fn try_into_ctx( self, dst: &mut [u8], ctx: Endian, ) -> Result<usize, <FilesetEntryCommand as TryIntoCtx<Endian>>::Error>
impl Copy for 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 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