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
ar_name: String
ar_date: time_t
modification time
ar_uid: uid_t
user id
ar_gid: gid_t
group id
ar_mode: mode_t
octal file permissions
ar_size: usize
size in bytes
ar_fmag: u16
consistency check
ar_member_name: Option<String>
extended format #1
Trait Implementations
impl Debug for ArHeader[src]
impl Default for ArHeader[src]
impl Clone for ArHeader[src]
fn clone(&self) -> ArHeader[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more