[][src]Struct google_oslogin1::PosixAccount

pub struct PosixAccount {
    pub username: Option<String>,
    pub shell: Option<String>,
    pub uid: Option<String>,
    pub primary: Option<bool>,
    pub operating_system_type: Option<String>,
    pub gid: Option<String>,
    pub gecos: Option<String>,
    pub home_directory: Option<String>,
    pub system_id: Option<String>,
    pub account_id: Option<String>,
}

The POSIX account information associated with a Google account.

This type is not used in any activity, and only used as part of another schema.

Fields

username: Option<String>

The username of the POSIX account.

shell: Option<String>

The path to the logic shell for this account.

uid: Option<String>

The user ID.

primary: Option<bool>

Only one POSIX account can be marked as primary.

operating_system_type: Option<String>

The operating system type where this account applies.

gid: Option<String>

The default group ID.

gecos: Option<String>

The GECOS (user information) entry for this account.

home_directory: Option<String>

The path to the home directory for this account.

system_id: Option<String>

System identifier for which account the username or uid applies to. By default, the empty value is used.

account_id: Option<String>

Output only. A POSIX account identifier.

Trait Implementations

impl Part for PosixAccount[src]

impl Default for PosixAccount[src]

impl Clone for PosixAccount[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for PosixAccount[src]

impl Serialize for PosixAccount[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

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

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

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

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

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