Struct pb_async::User[][src]

pub struct User {
    pub created: f64,
    pub email: String,
    pub email_normalized: String,
    pub iden: String,
    pub image_url: Option<String>,
    pub max_upload_size: f64,
    pub modified: f64,
    pub name: String,
    // some fields omitted
}

Information about logged in user.

Fields

Created timestamp in unix time.

Account email - used as a push target

Normalized account email

Identifier

URL of profile image

Maximum upload size allowed

Modified timestamp in unix time.

User real name

Trait Implementations

impl Clone for User
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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