Struct libc::passwd [] [src]

pub struct passwd {
    pub pw_name: *mut c_char,
    pub pw_passwd: *mut c_char,
    pub pw_uid: uid_t,
    pub pw_gid: gid_t,
    pub pw_change: time_t,
    pub pw_class: *mut c_char,
    pub pw_gecos: *mut c_char,
    pub pw_dir: *mut c_char,
    pub pw_shell: *mut c_char,
    pub pw_expire: time_t,
}

Fields

pw_name
pw_passwd
pw_uid
pw_gid
pw_change
pw_class
pw_gecos
pw_dir
pw_shell
pw_expire

Trait Implementations

impl Copy for passwd

impl Clone for passwd

fn clone(&self) -> passwd

fn clone_from(&mut self, source: &Self)