Struct users::User
[−]
[src]
pub struct User {
pub uid: i32,
pub name: String,
pub primary_group: u32,
}Information about a particular user.
Fields
uid: i32
This user's ID
name: String
This user's name
primary_group: u32
The ID of this user's primary group
Trait Implementations
impl Clone for User[src]
fn clone(&self) -> User
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more