pub struct Passwd<'a> {
pub name: &'a str,
pub passwd: &'a str,
pub uid: UidT,
pub gid: GidT,
pub gecos: &'a str,
pub dir: &'a str,
pub shell: &'a str,
}Fields§
§name: &'a str§passwd: &'a str§uid: UidT§gid: GidT§gecos: &'a str§dir: &'a str§shell: &'a strTrait Implementations§
impl<'a> Copy for Passwd<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for Passwd<'a>
impl<'a> Send for Passwd<'a>
impl<'a> Sync for Passwd<'a>
impl<'a> Unpin for Passwd<'a>
impl<'a> UnwindSafe for Passwd<'a>
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