Struct groups::Group [] [src]

pub struct Group {
    pub name: String,
    pub gid: u32,
    pub user_list: Option<Vec<String>>,
}

Structure used to wrap parsed information from groups database

Fields

Group's name

Group's GID

List of users for group

Trait Implementations

impl Debug for Group
[src]

Formats the value using the given formatter.

impl PartialEq for Group
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Clone for Group
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more