[][src]Struct isilon::models::MappingUsersLookupMappingItemGroup

pub struct MappingUsersLookupMappingItemGroup {
    pub dn: Option<String>,
    pub dns_domain: Option<String>,
    pub domain: Option<String>,
    pub email: Option<String>,
    pub enabled: Option<bool>,
    pub expired: Option<bool>,
    pub expiry: Option<i32>,
    pub gecos: Option<String>,
    pub generated_gid: Option<bool>,
    pub generated_uid: Option<bool>,
    pub generated_upn: Option<bool>,
    pub gid: Option<AuthAccessAccessItemFileGroup>,
    pub home_directory: Option<String>,
    pub id: String,
    pub locked: Option<bool>,
    pub max_password_age: Option<i32>,
    pub member_of: Option<Vec<AuthAccessAccessItemFileGroup>>,
    pub name: String,
    pub object_history: Option<Vec<AuthGroupObjectHistoryItem>>,
    pub on_disk_group_identity: Option<AuthAccessAccessItemFileGroup>,
    pub on_disk_user_identity: Option<AuthAccessAccessItemFileGroup>,
    pub password_expired: Option<bool>,
    pub password_expires: Option<bool>,
    pub password_expiry: Option<i32>,
    pub password_last_set: Option<i32>,
    pub primary_group_sid: Option<AuthAccessAccessItemFileGroup>,
    pub prompt_password_change: Option<bool>,
    pub provider: Option<String>,
    pub sam_account_name: Option<String>,
    pub shell: Option<String>,
    pub sid: Option<AuthAccessAccessItemFileGroup>,
    pub _type: String,
    pub uid: Option<AuthAccessAccessItemFileGroup>,
    pub upn: Option<String>,
    pub user_can_change_password: Option<bool>,
}

Fields

dn: Option<String>dns_domain: Option<String>domain: Option<String>email: Option<String>enabled: Option<bool>

If true, the authenticated user is enabled.

expired: Option<bool>

If true, the authenticated auth user is expired.

expiry: Option<i32>gecos: Option<String>generated_gid: Option<bool>

If true, indicates that the GID was generated.

generated_uid: Option<bool>

If true, indicates that the UID was generated.

generated_upn: Option<bool>

If true, indicates that the UPN was generated.

gid: Option<AuthAccessAccessItemFileGroup>

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

home_directory: Option<String>id: String

Specifies the user or group ID.

locked: Option<bool>

If true, the account is locked out.

max_password_age: Option<i32>

Specifies the maximum time in seconds allowed before the password expires.

member_of: Option<Vec<AuthAccessAccessItemFileGroup>>name: String

Specifies a user or group name.

object_history: Option<Vec<AuthGroupObjectHistoryItem>>on_disk_group_identity: Option<AuthAccessAccessItemFileGroup>

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

on_disk_user_identity: Option<AuthAccessAccessItemFileGroup>

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

password_expired: Option<bool>

If true, the password has expired.

password_expires: Option<bool>

If true, the password is allowed to expire.

password_expiry: Option<i32>password_last_set: Option<i32>primary_group_sid: 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 on next login.

provider: Option<String>sam_account_name: Option<String>shell: Option<String>sid: Option<AuthAccessAccessItemFileGroup>

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

_type: String

Specifies the object type.

uid: Option<AuthAccessAccessItemFileGroup>

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

upn: Option<String>user_can_change_password: Option<bool>

If true, the user password can be changed.

Trait Implementations

impl Debug for MappingUsersLookupMappingItemGroup[src]

impl Serialize for MappingUsersLookupMappingItemGroup[src]

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

Auto Trait Implementations

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