[][src]Struct twilight_model::user::CurrentUser

pub struct CurrentUser {
    pub avatar: Option<String>,
    pub bot: bool,
    pub discriminator: String,
    pub email: Option<String>,
    pub flags: Option<UserFlags>,
    pub id: UserId,
    pub locale: Option<String>,
    pub mfa_enabled: bool,
    pub name: String,
    pub premium_type: Option<PremiumType>,
    pub public_flags: Option<UserFlags>,
    pub verified: Option<bool>,
}

Fields

avatar: Option<String>

User's avatar hash.

To retrieve the url to the avatar, you can follow Discord's documentation on Image formatting.

bot: bool

Whether the user belongs to an OAuth2 application.

discriminator: String

Discriminator used to differentiate people with the same username.

serde

The discriminator field can be deserialized from either a string or an integer. The field will always serialize into a string due to that being the type Discord's API uses.

email: Option<String>

User's email address associated to the account.

Requires the email oauth scope. See Discord's documentation for more information.

flags: Option<UserFlags>

All flags on a user's account.

id: UserId

User's id.

locale: Option<String>

User's chosen language option.

mfa_enabled: bool

Whether the user has two factor enabled on their account.

name: String

User's username, not unique across the platform.

premium_type: Option<PremiumType>

Type of Nitro subscription on a user's account.

public_flags: Option<UserFlags>

Public flags on a user's account.

verified: Option<bool>

Whether the email on this account has been verified.

Requires the email oauth scope. See Discord's documentation for more information.

Trait Implementations

impl Clone for CurrentUser[src]

impl Debug for CurrentUser[src]

impl Default for CurrentUser[src]

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

impl Eq for CurrentUser[src]

impl Hash for CurrentUser[src]

impl PartialEq<CurrentUser> for CurrentUser[src]

impl Serialize for CurrentUser[src]

impl StructuralEq for CurrentUser[src]

impl StructuralPartialEq for CurrentUser[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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

type Owned = T

The resulting type after obtaining ownership.

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.