pub trait GroupExt {
fn members(&self) -> &[OsString];
fn add_member<S: AsRef<OsStr> + ?Sized>(self, name: &S) -> Self;
}
Expand description
Unix-specific extensions for Group
s.
Required Methods
Returns a slice of the list of users that are in this group as their non-primary group.