pub struct Passwd {
    pub name: String,
    pub uid: u32,
    pub gid: u32,
    pub user_info: String,
    pub user_shell: String,
    pub user_dir: String,
    pub user_passwd: String,
}

Fields

name: String

AKA passwd.pw_name

uid: u32

AKA passwd.pw_uid

gid: u32

AKA passwd.pw_gid

user_info: String

AKA passwd.pw_gecos

user_shell: String

AKA passwd.pw_shell

user_dir: String

AKA passwd.pw_dir

user_passwd: String

AKA passwd.pw_passwd

Implementations

This is a wrapper function for libc::getgrouplist.

From: <https://man7.org/linux/man-pages/man3/getgrouplist.3.html>

If the number of groups of which user is a member is less than or equal to *ngroups, then the value *ngroups is returned. If the user is a member of more than *ngroups groups, then getgrouplist() returns -1. In this case, the value returned in *ngroups can be used to resize the buffer passed to a further call getgrouplist().

However, on macOS/darwin (and maybe others?) getgrouplist does not update ngroups if ngroups is too small. Therefore, if not updated by getgrouplist, ngroups needs to be increased in a loop until getgrouplist stops returning -1.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.