[][src]Struct gdnative_common::libc::spwd

#[repr(C)]
pub struct spwd {
    pub sp_namp: *mut i8,
    pub sp_pwdp: *mut i8,
    pub sp_lstchg: i64,
    pub sp_min: i64,
    pub sp_max: i64,
    pub sp_warn: i64,
    pub sp_inact: i64,
    pub sp_expire: i64,
    pub sp_flag: u64,
}

Fields

sp_namp: *mut i8sp_pwdp: *mut i8sp_lstchg: i64sp_min: i64sp_max: i64sp_warn: i64sp_inact: i64sp_expire: i64sp_flag: u64

Trait Implementations

impl Clone for spwd[src]

impl Copy for spwd[src]

Auto Trait Implementations

impl RefUnwindSafe for spwd

impl !Send for spwd

impl !Sync for spwd

impl Unpin for spwd

impl UnwindSafe for spwd

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.