Struct AixHeader
struct AixHeader { ... }
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.
Implementations
impl Clone for AixHeader
fn clone(self: &Self) -> AixHeader
impl Copy for AixHeader
impl Debug for AixHeader
fn fmt(self: &Self, f: &mut $crate::fmt::Formatter<'_>) -> $crate::fmt::Result
impl Freeze for AixHeader
impl Pod for AixHeader
impl RefUnwindSafe for AixHeader
impl Send for AixHeader
impl Sync for AixHeader
impl Unpin for AixHeader
impl UnwindSafe for AixHeader
impl<T> Any for AixHeader
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for AixHeader
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for AixHeader
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> CloneToUninit for AixHeader
unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)
impl<T> From for AixHeader
fn from(t: T) -> TReturns the argument unchanged.
impl<T> ToOwned for AixHeader
fn to_owned(self: &Self) -> Tfn clone_into(self: &Self, target: &mut T)
impl<T, U> Into for AixHeader
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for AixHeader
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for AixHeader
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>