Struct object::archive::AixHeader

source ·
#[repr(C)]
pub struct AixHeader { pub size: [u8; 20], pub nxtmem: [u8; 20], pub prvmem: [u8; 20], pub date: [u8; 12], pub uid: [u8; 12], pub gid: [u8; 12], pub mode: [u8; 12], pub namlen: [u8; 4], }
Expand description

The header at the start of an AIX big archive member, without name.

Fields§

§size: [u8; 20]

File member size in decimal.

§nxtmem: [u8; 20]

Next member offset in decimal.

§prvmem: [u8; 20]

Previous member offset in decimal.

§date: [u8; 12]

File member date in decimal.

§uid: [u8; 12]

File member user id in decimal.

§gid: [u8; 12]

File member group id in decimal.

§mode: [u8; 12]

File member mode in octal.

§namlen: [u8; 4]

File member name length in decimal.

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.