Struct goblin::mach::load_command::FvmfileCommand
source · #[repr(C)]pub struct FvmfileCommand {
pub cmd: u32,
pub cmdsize: u32,
pub name: LcStr,
pub header_addr: u32,
}
Expand description
The fvmfile_command contains a reference to a file to be loaded at the specified virtual address. (Presently, this command is reserved for internal use. The kernel ignores this command when loading a program into memory).
Fields§
§cmd: u32
LC_FVMFILE
cmdsize: u32
includes pathname string
name: LcStr
files pathname
header_addr: u32
files virtual address
Trait Implementations§
source§impl Clone for FvmfileCommand
impl Clone for FvmfileCommand
source§fn clone(&self) -> FvmfileCommand
fn clone(&self) -> FvmfileCommand
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 moresource§impl Debug for FvmfileCommand
impl Debug for FvmfileCommand
source§impl<'a> IntoCtx<Endian> for &'a FvmfileCommand
impl<'a> IntoCtx<Endian> for &'a FvmfileCommand
source§impl<'a> TryFromCtx<'a, Endian> for FvmfileCommandwhere
FvmfileCommand: 'a,
impl<'a> TryFromCtx<'a, Endian> for FvmfileCommandwhere FvmfileCommand: 'a,
source§impl<'a> TryIntoCtx<Endian> for &'a FvmfileCommand
impl<'a> TryIntoCtx<Endian> for &'a FvmfileCommand
source§impl TryIntoCtx<Endian> for FvmfileCommand
impl TryIntoCtx<Endian> for FvmfileCommand
impl Copy for FvmfileCommand
Auto Trait Implementations§
impl RefUnwindSafe for FvmfileCommand
impl Send for FvmfileCommand
impl Sync for FvmfileCommand
impl Unpin for FvmfileCommand
impl UnwindSafe for FvmfileCommand
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