Struct shell_rs::core::pwd::Passwd [−][src]
pub struct Passwd {
pub name: String,
pub passwd: String,
pub uid: uid_t,
pub gid: gid_t,
pub gecos: String,
pub home_dir: String,
pub shell: String,
}Fields
name: StringUsername.
passwd: StringPasssword, commonly empty.
uid: uid_tUser ID.
gid: gid_tUser default group ID.
gecos: StringReal name.
home_dir: StringHome directory.
shell: StringDefault shell.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Passwd
impl UnwindSafe for Passwd
Blanket Implementations
Mutably borrows from an owned value. Read more