pub struct FatHeader {
pub magic: u32,
pub archs: Vec<FatArch>,
}Expand description
The structures of the file format for “fat” architecture specific file (wrapper design).
At the begining of the file there is one FatHeader structure followed by a number of FatArch
structures.
Fields§
§magic: u32fat magic number identifier
archs: Vec<FatArch>number of structs that follow
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FatHeader
impl RefUnwindSafe for FatHeader
impl Send for FatHeader
impl Sync for FatHeader
impl Unpin for FatHeader
impl UnwindSafe for FatHeader
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