Struct goblin::mach::load_command::Fvmlib
source · #[repr(C)]pub struct Fvmlib {
pub name: u32,
pub minor_version: u32,
pub header_addr: u32,
}
Expand description
Fixed virtual memory shared libraries are identified by two things. The target pathname (the name of the library as found for execution), and the minor version number. The address of where the headers are loaded is in header_addr. (THIS IS OBSOLETE and no longer supported).
Fields§
§name: u32
library’s target pathname
minor_version: u32
library’s minor version number
header_addr: u32
library’s header address
Trait Implementations§
source§impl<'a> TryIntoCtx<Endian> for &'a Fvmlib
impl<'a> TryIntoCtx<Endian> for &'a Fvmlib
source§impl TryIntoCtx<Endian> for Fvmlib
impl TryIntoCtx<Endian> for Fvmlib
impl Copy for Fvmlib
Auto Trait Implementations§
impl RefUnwindSafe for Fvmlib
impl Send for Fvmlib
impl Sync for Fvmlib
impl Unpin for Fvmlib
impl UnwindSafe for Fvmlib
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