[][src]Struct libnss::shadow::CShadow

#[repr(C)]pub struct CShadow {
    pub name: *mut c_char,
    pub passwd: *mut c_char,
    pub last_change: i64,
    pub change_min_days: i64,
    pub change_max_days: i64,
    pub change_warn_days: i64,
    pub change_inactive_days: i64,
    pub expire_date: i64,
    pub reserved: u64,
}

Fields

name: *mut c_charpasswd: *mut c_charlast_change: i64change_min_days: i64change_max_days: i64change_warn_days: i64change_inactive_days: i64expire_date: i64reserved: u64

Trait Implementations

impl ToC<CShadow> for Shadow[src]

Auto Trait Implementations

impl RefUnwindSafe for CShadow

impl !Send for CShadow

impl !Sync for CShadow

impl Unpin for CShadow

impl UnwindSafe for CShadow

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.