Struct object::archive::AixFileHeader
source · #[repr(C)]pub struct AixFileHeader {
pub magic: [u8; 8],
pub memoff: [u8; 20],
pub gstoff: [u8; 20],
pub gst64off: [u8; 20],
pub fstmoff: [u8; 20],
pub lstmoff: [u8; 20],
pub freeoff: [u8; 20],
}
Expand description
The AIX big archive’s fixed length header at file beginning.
Fields§
§magic: [u8; 8]
Archive magic string.
memoff: [u8; 20]
Offset of member table.
gstoff: [u8; 20]
Offset of global symbol table.
gst64off: [u8; 20]
Offset of global symbol table for 64-bit objects.
fstmoff: [u8; 20]
Offset of first member.
lstmoff: [u8; 20]
Offset of last member.
freeoff: [u8; 20]
Offset of first member on free list.
Trait Implementations§
source§impl Clone for AixFileHeader
impl Clone for AixFileHeader
source§fn clone(&self) -> AixFileHeader
fn clone(&self) -> AixFileHeader
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 AixFileHeader
impl Debug for AixFileHeader
impl Copy for AixFileHeader
impl Pod for AixFileHeader
Auto Trait Implementations§
impl RefUnwindSafe for AixFileHeader
impl Send for AixFileHeader
impl Sync for AixFileHeader
impl Unpin for AixFileHeader
impl UnwindSafe for AixFileHeader
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