[][src]Struct serenity::model::user::CurrentUser

pub struct CurrentUser {
    pub id: UserId,
    pub avatar: Option<String>,
    pub bot: bool,
    pub discriminator: u16,
    pub email: Option<String>,
    pub mfa_enabled: bool,
    pub name: String,
    pub verified: bool,
}

Information about the current user.

Fields

Methods

impl CurrentUser
[src]

Returns the formatted URL of the user's icon, if one exists.

This will produce a WEBP image URL, or GIF if the user has a GIF avatar.

Examples

Print out the current user's avatar url if one is set:

// assuming the cache has been unlocked
let user = &cache.user;

match user.avatar_url() {
    Some(url) => println!("{}'s avatar can be found at {}", user.name, url),
    None => println!("{} does not have an avatar set.", user.name)
}

Returns the formatted URL to the user's default avatar URL.

This will produce a PNG URL.

Edits the current user's profile settings.

This mutates the current user in-place.

Refer to EditProfile's documentation for its methods.

Examples

Change the avatar:

This example is not tested
use serenity::CACHE;

let avatar = serenity::utils::read_image("./avatar.png").unwrap();

CACHE.write().user.edit(|p| p.avatar(Some(&avatar)));

Retrieves the URL to the current user's avatar, falling back to the default avatar if needed.

This will call avatar_url first, and if that returns None, it then falls back to default_avatar_url.

Gets a list of guilds that the current user is in.

Examples

Print out the names of all guilds the current user is in:

// assuming the cache has been unlocked
let user = &cache.user;

if let Ok(guilds) = user.guilds() {
    for (index, guild) in guilds.into_iter().enumerate() {
        println!("{}: {}", index, guild.name);
    }
}

Returns the invite url for the bot with the given permissions.

This queries the REST API for the client id.

If the permissions passed are empty, the permissions part will be dropped.

Examples

Get the invite url with no permissions set:


use serenity::model::Permissions;

// assuming the cache has been unlocked
let url = match cache.user.invite_url(Permissions::empty()) {
    Ok(v) => v,
    Err(why) => {
        println!("Error getting invite url: {:?}", why);

        return;
    },
};

assert_eq!(url, "https://discordapp.com/api/oauth2/authorize? \
                 client_id=249608697955745802&scope=bot");

Get the invite url with some basic permissions set:


use serenity::model::Permissions;

// assuming the cache has been unlocked
let url = match cache.user.invite_url(Permissions::READ_MESSAGES | Permissions::SEND_MESSAGES | Permissions::EMBED_LINKS) {
    Ok(v) => v,
    Err(why) => {
        println!("Error getting invite url: {:?}", why);

        return;
    },
};

assert_eq!(url,
"https://discordapp.
com/api/oauth2/authorize?client_id=249608697955745802&scope=bot&permissions=19456");

Errors

Returns an HttpError::UnsuccessfulRequest(Unauthorized) If the user is not authorized for this end point.

May return Error::Format while writing url to the buffer.

Returns a static formatted URL of the user's icon, if one exists.

This will always produce a WEBP image URL.

Examples

Print out the current user's static avatar url if one is set:

// assuming the cache has been unlocked
let user = &cache.user;

match user.static_avatar_url() {
    Some(url) => println!("{}'s static avatar can be found at {}", user.name, url),
    None => println!("Could not get static avatar for {}.", user.name)
}

Returns the tag of the current user.

Examples

Print out the current user's distinct identifier (e.g., Username#1234):

// assuming the cache has been unlocked
println!("The current user's distinct identifier is {}", cache.user.tag());

Trait Implementations

impl Mentionable for CurrentUser
[src]

Creates a mentionable string, that will be able to notify and/or create a link to the item. Read more

impl Default for CurrentUser
[src]

Returns the "default value" for a type. Read more

impl From<CurrentUser> for User
[src]

Performs the conversion.

impl<'a> From<&'a CurrentUser> for User
[src]

Performs the conversion.

impl From<CurrentUser> for UserId
[src]

Gets the Id of a CurrentUser struct.

impl<'a> From<&'a CurrentUser> for UserId
[src]

Gets the Id of a CurrentUser struct.

impl Clone for CurrentUser
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CurrentUser
[src]

Formats the value using the given formatter. Read more

impl Serialize for CurrentUser
[src]

Serialize this value into the given Serde serializer. Read more

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

Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations

impl Send for CurrentUser

impl Sync for CurrentUser

Blanket Implementations

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

Performs the conversion.

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

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T> From for T
[src]

Performs the conversion.

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

Immutably borrows from an owned value. Read more

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

Mutably borrows from an owned value. Read more

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

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

impl<T> Erased for T

impl<T> Typeable for T where
    T: Any

Get the TypeId of this object.

impl<T> DebugAny for T where
    T: Any + Debug
[src]

impl<T> CloneAny for T where
    T: Clone + Any
[src]

impl<T> UnsafeAny for T where
    T: Any