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: f64
Created timestamp in unix time.
email: String
Account email - used as a push target
email_normalized: String
Normalized account email
iden: String
Identifier
image_url: Option<String>
URL of profile image
max_upload_size: f64
Maximum upload size allowed
modified: f64
Modified timestamp in unix time.
name: String
User real name
Trait Implementations
impl Clone for User[src]
impl Clone for Userfn clone(&self) -> User[src]
fn clone(&self) -> UserReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Debug for User[src]
impl Debug for User