#[repr(C)]pub struct passwd {
pub pw_name: *mut i8,
pub pw_passwd: *mut i8,
pub pw_uid: u32,
pub pw_gid: u32,
pub pw_gecos: *mut i8,
pub pw_dir: *mut i8,
pub pw_shell: *mut i8,
}Fields
pw_name: *mut i8pw_passwd: *mut i8pw_uid: u32pw_gid: u32pw_gecos: *mut i8pw_dir: *mut i8pw_shell: *mut i8Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for passwd
impl !Send for passwd
impl !Sync for passwd
impl Unpin for passwd
impl UnwindSafe for passwd
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