pub struct AuthenticatedUser {
Show 29 fields pub login: String, pub id: u64, pub avatar_url: String, pub gravatar_id: String, pub url: String, pub html_url: String, pub followers_url: String, pub following_url: String, pub gists_url: String, pub starred_url: String, pub subscriptions_url: String, pub organizations_url: String, pub repos_url: String, pub events_url: String, pub received_events_url: String, pub site_admin: bool, pub name: Option<String>, pub company: Option<String>, pub blog: String, pub location: Option<String>, pub email: Option<String>, pub hireable: Option<bool>, pub bio: Option<String>, pub public_repos: u64, pub public_gists: u64, pub followers: u64, pub following: u64, pub created_at: String, pub updated_at: String,
}
Expand description

Information about current authenticated user

Fields

login: Stringid: u64avatar_url: Stringgravatar_id: Stringurl: Stringhtml_url: Stringfollowers_url: Stringfollowing_url: Stringgists_url: Stringstarred_url: Stringsubscriptions_url: Stringorganizations_url: Stringrepos_url: Stringevents_url: Stringreceived_events_url: Stringsite_admin: boolname: Option<String>company: Option<String>blog: Stringlocation: Option<String>email: Option<String>hireable: Option<bool>bio: Option<String>public_repos: u64public_gists: u64followers: u64following: u64created_at: Stringupdated_at: String

Trait Implementations

Formats the value using the given formatter. Read more
Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.