[−][src]Struct twilight_model::user::CurrentUser
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: boolWhether the user belongs to an OAuth2 application.
discriminator: StringDiscriminator 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: UserIdUser's id.
locale: Option<String>User's chosen language option.
mfa_enabled: boolWhether the user has two factor enabled on their account.
name: StringUser's username, not unique across the platform.
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]
pub fn clone(&self) -> CurrentUser[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for CurrentUser[src]
impl Default for CurrentUser[src]
pub fn default() -> CurrentUser[src]
impl<'de> Deserialize<'de> for CurrentUser[src]
pub fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Eq for CurrentUser[src]
impl Hash for CurrentUser[src]
pub fn hash<__H: Hasher>(&self, state: &mut __H)[src]
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl PartialEq<CurrentUser> for CurrentUser[src]
pub fn eq(&self, other: &CurrentUser) -> bool[src]
pub fn ne(&self, other: &CurrentUser) -> bool[src]
impl Serialize for CurrentUser[src]
pub fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer, [src]
__S: Serializer,
impl StructuralEq for CurrentUser[src]
impl StructuralPartialEq for CurrentUser[src]
Auto Trait Implementations
impl RefUnwindSafe for CurrentUser[src]
impl Send for CurrentUser[src]
impl Sync for CurrentUser[src]
impl Unpin for CurrentUser[src]
impl UnwindSafe for CurrentUser[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,