pub trait GroupExt {
    fn members(&self) -> &[OsString];
    fn add_member<S: AsRef<OsStr> + ?Sized>(self, name: &S) -> Self;
}
Expand description

Unix-specific extensions for Groups.

Required Methods

Returns a slice of the list of users that are in this group as their non-primary group.

Adds a new member to this group.

Implementors