Objects that hold user info.
trait UserInfo {
/* Required methods */
fn comment(&self) -> &ByteStr
fn group_id(&self) -> u32
fn home(&self) -> &ByteStr
fn name(&self) -> &ByteStr
fn password(&self) -> &ByteStr
fn shell(&self) -> &ByteStr
fn user_id(&self) -> u32
}| Receiver | Name | Description |
|---|---|---|
&self | comment | Returns the comment of the user. |
&self | group_id | Returns the group id of the user. |
&self | home | Returns the home folder of the user. |
&self | name | Returns the name of the user. |
&self | password | Returns the password of the user. |
&self | shell | Returns the shell of the user. |
&self | user_id | Returns the user id of the user. |