Struct redox_users::Group[][src]

pub struct Group {
    pub group: String,
    pub gid: usize,
    pub users: Vec<String>,
}

A struct representing a Redox users group. Currently maps to an '/etc/group' file entry.

Fields

Group name

Unique group id

Group members usernames

Trait Implementations

impl Display for Group
[src]

Formats the value using the given formatter. Read more

impl FromStr for Group
[src]

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. Read more

Auto Trait Implementations

impl Send for Group

impl Sync for Group