pub(crate) struct PasswdEntry {
pub(crate) name: String,
pub(crate) passwd: String,
pub(crate) uid: u32,
pub(crate) gid: u32,
pub(crate) gecos: String,
pub(crate) home_dir: String,
pub(crate) shell: String,
}Fields§
§name: String§passwd: String§uid: u32§gid: u32§gecos: String§home_dir: String§shell: StringImplementations§
Trait Implementations§
Source§impl Clone for PasswdEntry
impl Clone for PasswdEntry
Source§fn clone(&self) -> PasswdEntry
fn clone(&self) -> PasswdEntry
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PasswdEntry
impl Debug for PasswdEntry
Source§impl PartialEq for PasswdEntry
impl PartialEq for PasswdEntry
impl Eq for PasswdEntry
impl StructuralPartialEq for PasswdEntry
Auto Trait Implementations§
impl Freeze for PasswdEntry
impl RefUnwindSafe for PasswdEntry
impl Send for PasswdEntry
impl Sync for PasswdEntry
impl Unpin for PasswdEntry
impl UnwindSafe for PasswdEntry
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