Struct storyboard_client::User[][src]

pub struct User {
    pub email: String,
    pub enable_login: bool,
    pub full_name: String,
    pub is_superuser: bool,
    pub last_login: DateTime<Utc>,
    pub openid: String,
    pub id: i32,
}

Represents an user.

Fields

The email of the user.

To check of the user is allowed to login.

The full name of the user.

To check if the user has superuser privileges.

The last date when the user logged in.

The openid string

The ID of the user.

Trait Implementations

impl Debug for User
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for User

impl Sync for User