[][src]Struct isilon::models::AuthGroupExtended

pub struct AuthGroupExtended {
    pub dn: Option<String>,
    pub dns_domain: Option<String>,
    pub domain: Option<String>,
    pub generated_gid: Option<bool>,
    pub gid: Option<AuthAccessAccessItemFileGroup>,
    pub id: String,
    pub member_of: Option<Vec<AuthAccessAccessItemFileGroup>>,
    pub name: String,
    pub object_history: Option<Vec<AuthGroupObjectHistoryItem>>,
    pub provider: Option<String>,
    pub sam_account_name: Option<String>,
    pub sid: Option<AuthAccessAccessItemFileGroup>,
    pub _type: String,
}

Fields

dn: Option<String>dns_domain: Option<String>domain: Option<String>generated_gid: Option<bool>

If true, the GID was generated.

gid: Option<AuthAccessAccessItemFileGroup>

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

id: String

Specifies the user or group ID.

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

Specifies a user or group name.

object_history: Option<Vec<AuthGroupObjectHistoryItem>>provider: Option<String>sam_account_name: 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.

Trait Implementations

impl Debug for AuthGroupExtended[src]

impl Serialize for AuthGroupExtended[src]

impl<'de> Deserialize<'de> for AuthGroupExtended[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