#[repr(C)]pub struct group {
pub gr_name: *mut c_char,
pub gr_passwd: *mut c_char,
pub gr_gid: gid_t,
pub gr_mem: *mut *mut c_char,
}Expand description
Fields§
§gr_name: *mut c_charThe name of the group.
gr_passwd: *mut c_charNon-POSIX, see https://www.man7.org/linux/man-pages/man3/getgrnam.3.html.
Group password.
gr_gid: gid_tNumerical group ID.
gr_mem: *mut *mut c_charPointer to a null-terminated array of character pointers to member names.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for group
impl RefUnwindSafe for group
impl !Send for group
impl !Sync for group
impl Unpin for group
impl UnsafeUnpin for group
impl UnwindSafe for group
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more