[][src]Struct isilon::models::AuthUser

pub struct AuthUser {
    pub email: Option<String>,
    pub enabled: Option<bool>,
    pub expiry: Option<i32>,
    pub gecos: Option<String>,
    pub home_directory: Option<String>,
    pub password: Option<String>,
    pub password_expires: Option<bool>,
    pub primary_group: Option<AuthAccessAccessItemFileGroup>,
    pub prompt_password_change: Option<bool>,
    pub shell: Option<String>,
    pub sid: Option<String>,
    pub uid: Option<i32>,
    pub unlock: Option<bool>,
}

Fields

email: Option<String>

Specifies an email address for the user.

enabled: Option<bool>

If true, the authenticated user is enabled.

expiry: Option<i32>

Specifies the Unix Epoch time when the auth user will expire.

gecos: Option<String>

Specifies the GECOS value, which is usually the full name.

home_directory: Option<String>

Specifies a home directory for the user.

password: Option<String>

Changes the password for the user.

password_expires: Option<bool>

If true, the password should expire.

primary_group: Option<AuthAccessAccessItemFileGroup>

Specifies properties for a persona, which consists of either a 'type' and a 'name' or an 'ID'.

prompt_password_change: Option<bool>

If true, prompts the user to change their password at the next login.

shell: Option<String>

Specifies the shell for the user.

sid: Option<String>

Specifies a security identifier.

uid: Option<i32>

Specifies a numeric user identifier.

unlock: Option<bool>

If true, the user account should be unlocked.

Trait Implementations

impl Debug for AuthUser[src]

impl Serialize for AuthUser[src]

impl<'de> Deserialize<'de> for AuthUser[src]

Auto Trait Implementations

impl Send for AuthUser

impl Sync for AuthUser

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T