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 more