[][src]Struct serenity::model::application::BotApplication

pub struct BotApplication {
    pub id: UserId,
    pub avatar: Option<String>,
    pub bot: bool,
    pub discriminator: u16,
    pub name: String,
    pub token: String,
    // some fields omitted
}

Information about an application with an application's bot user.

Fields

id: UserId

The unique Id of the bot user.

avatar: Option<String>

A hash of the avatar, if one is assigned.

Can be used to generate a full URL to the avatar.

bot: bool

Indicator of whether it is a bot.

discriminator: u16

The discriminator assigned to the bot user.

While discriminators are not unique, the username#discriminator pair is.

name: String

The bot user's username.

token: String

The token used to authenticate as the bot user.

Note: Keep this information private, as untrusted sources can use it to perform any action with a bot user.

Trait Implementations

impl Clone for BotApplication[src]

impl Debug for BotApplication[src]

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

impl Serialize for BotApplication[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> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]