Struct users::Group [] [src]

pub struct Group {
    pub gid: uid_t,
    pub name: String,
    pub members: Vec<String>,
}

Information about a particular group.

Fields

gid: uid_t

This group's ID

name: String

This group's name

members: Vec<String>

Vector of the names of the users who belong to this group as a non-primary member

Trait Implementations

impl Clone for Group
[src]

fn clone(&self) -> Group

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