pub struct GshadowEntry {
pub name: String,
pub password: String,
pub admins: String,
pub members: String,
}Expand description
Entry from gshadow file. Format: name:password:admins:members
Fields§
§name: Stringgroup name
password: Stringencrypted password (or ! or empty)
admins: Stringcomma-separated list of group administrators
members: Stringcomma-separated list of group members
Implementations§
Trait Implementations§
Source§impl Clone for GshadowEntry
impl Clone for GshadowEntry
Source§fn clone(&self) -> GshadowEntry
fn clone(&self) -> GshadowEntry
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 GshadowEntry
impl Debug for GshadowEntry
Source§impl PartialEq for GshadowEntry
impl PartialEq for GshadowEntry
impl Eq for GshadowEntry
impl StructuralPartialEq for GshadowEntry
Auto Trait Implementations§
impl Freeze for GshadowEntry
impl RefUnwindSafe for GshadowEntry
impl Send for GshadowEntry
impl Sync for GshadowEntry
impl Unpin for GshadowEntry
impl UnsafeUnpin for GshadowEntry
impl UnwindSafe for GshadowEntry
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