Struct mach_object::ArHeader [] [src]

pub struct ArHeader {
    pub ar_name: String,
    pub ar_date: time_t,
    pub ar_uid: uid_t,
    pub ar_gid: gid_t,
    pub ar_mode: mode_t,
    pub ar_size: usize,
    pub ar_fmag: u16,
    pub ar_member_name: Option<String>,
}

the archive file header

Fields

modification time

user id

group id

octal file permissions

size in bytes

consistency check

extended format #1

Trait Implementations

impl Debug for ArHeader
[src]

[src]

Formats the value using the given formatter.

impl Default for ArHeader
[src]

[src]

Returns the "default value" for a type. Read more

impl Clone for ArHeader
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Display for ArHeader
[src]

[src]

Formats the value using the given formatter. Read more