pub struct FatArch {
pub cputype: cpu_type_t,
pub cpusubtype: cpu_subtype_t,
pub offset: u64,
pub size: u64,
pub align: u32,
}Expand description
For each architecture in the file, specified by a pair of cputype and cpusubtype,
the FatArch describes the file offset, file size and alignment
in the file of the architecture specific member.
Fields§
§cputype: cpu_type_tcpu specifier (int)
cpusubtype: cpu_subtype_tmachine specifier (int)
offset: u64file offset to this object file
size: u64size of this object file
align: u32alignment as a power of 2
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FatArch
impl RefUnwindSafe for FatArch
impl Send for FatArch
impl Sync for FatArch
impl Unpin for FatArch
impl UnwindSafe for FatArch
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