Expand description
Representation of a Group, based on libc::group
Fields
name: String
Group name
passwd: CString
Group password
gid: Gid
Group ID
mem: Vec<String>
List of Group members
Implementations
sourceimpl Group
impl Group
sourcepub fn from_gid(gid: Gid) -> Result<Option<Self>>
pub fn from_gid(gid: Gid) -> Result<Option<Self>>
Get a group by GID.
Internally, this function calls getgrgid_r(3)
Examples
use nix::unistd::{Gid, Group};
// Returns an Result<Option<Group>>, thus the double unwrap.
let res = Group::from_gid(Gid::from_raw(0)).unwrap().unwrap();
assert!(res.name == "root");
sourcepub fn from_name(name: &str) -> Result<Option<Self>>
pub fn from_name(name: &str) -> Result<Option<Self>>
Get a group by name.
Internally, this function calls getgrnam_r(3)
Examples
use nix::unistd::Group;
// Returns an Result<Option<Group>>, thus the double unwrap.
let res = Group::from_name("root").unwrap().unwrap();
assert!(res.name == "root");
Trait Implementations
impl StructuralPartialEq for Group
Auto Trait Implementations
impl RefUnwindSafe for Group
impl Send for Group
impl Sync for Group
impl Unpin for Group
impl UnwindSafe for Group
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more