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

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

Information about a user.

Fields

id: UserId

The unique Id of the user. Can be used to calculate the account's creation date.

avatar: Option<String>

Optional avatar hash.

bot: bool

Indicator of whether the user is a bot.

discriminator: u16

The account's discriminator to differentiate the user from others with the same name. The name+discriminator pair is always unique.

name: String

The account's username. Changing username will trigger a discriminator change if the username+discriminator pair becomes non-unique.

Implementations

impl User[src]

pub fn avatar_url(&self) -> Option<String>[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.

pub async fn create_dm_channel<'_>(
    &'_ self,
    cache_http: impl CacheHttp
) -> Result<PrivateChannel>
[src]

Creates a direct message channel between the current user and the user. This can also retrieve the channel if one already exists.

pub fn created_at(&self) -> DateTime<Utc>[src]

Retrieves the time that this user was created at.

pub fn default_avatar_url(&self) -> String[src]

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

This will produce a PNG URL.

pub async fn direct_message<F, '_>(
    &'_ self,
    cache_http: impl CacheHttp,
    f: F
) -> Result<Message> where
    F: FnOnce(&'b mut CreateMessage<'a>) -> &'b mut CreateMessage<'a>, 
[src]

Sends a message to a user through a direct message channel. This is a channel that can only be accessed by you and the recipient.

Examples

When a user sends a message with a content of "~help", DM the author a help message, and then react with '👌' to verify message sending:

use serenity::model::Permissions;

struct Handler;

#[serenity::async_trait]
impl EventHandler for Handler {
    async fn message(&self, ctx: Context, msg: Message) {
        if msg.content == "~help" {
            let url = match ctx.cache.current_user().await.invite_url(&ctx, Permissions::empty()).await {
                Ok(v) => v,
                Err(why) => {
                    println!("Error creating invite url: {:?}", why);

                    return;
                },
            };

            let help = format!(
                "Helpful info here. Invite me with this link: <{}>",
                url,
            );

            let dm = msg.author.direct_message(&ctx, |m| {
                m.content(&help)
            })
            .await;

            match dm {
                Ok(_) => {
                    let _ = msg.react(&ctx, '👌').await;
                },
                Err(why) => {
                    println!("Err sending help: {:?}", why);

                    let _ = msg.reply(&ctx, "There was an error DMing you help.").await;
                },
            };
        }
    }
}

let mut client =Client::builder("token").event_handler(Handler).await?;

Examples

Returns a ModelError::MessagingBot if the user being direct messaged is a bot user.

pub async fn dm<F, '_>(
    &'_ self,
    cache_http: impl CacheHttp,
    f: F
) -> Result<Message> where
    F: FnOnce(&'b mut CreateMessage<'a>) -> &'b mut CreateMessage<'a>, 
[src]

This is an alias of direct_message.

Examples

Sending a message:

This example is not tested
// assuming you are in a context

let _ = message.author.dm("Hello!");

Examples

Returns a ModelError::MessagingBot if the user being direct messaged is a bot user.

pub fn face(&self) -> String[src]

Retrieves the URL to the 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.

pub async fn has_role<'_>(
    &'_ self,
    cache_http: impl CacheHttp,
    guild: impl Into<GuildContainer>,
    role: impl Into<RoleId>
) -> Result<bool>
[src]

Check if a user has a Role. This will retrieve the Guild from the Cache if it is available, and then check if that guild has the given Role.

Three forms of data may be passed in to the guild parameter: either a PartialGuild, a GuildId, or a u64.

Examples

Check if a guild has a Role by Id:

This example is not tested
// Assumes a 'guild_id' and `role_id` have already been bound
let _ = message.author.has_role(guild_id, role_id);

pub async fn refresh<'_>(&'_ mut self, cache_http: impl CacheHttp) -> Result<()>[src]

Refreshes the information about the user.

Replaces the instance with the data retrieved over the REST API.

pub fn static_avatar_url(&self) -> Option<String>[src]

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

This will always produce a WEBP image URL.

pub fn tag(&self) -> String[src]

Returns the "tag" for the user.

The "tag" is defined as "username#discriminator", such as "zeyla#5479".

Examples

Make a command to tell the user what their tag is:

use serenity::utils::MessageBuilder;
use serenity::utils::ContentModifier::Bold;

struct Handler;

#[serenity::async_trait]
impl EventHandler for Handler {
    async fn message(&self, context: Context, msg: Message) {
        if msg.content == "!mytag" {
            let content = MessageBuilder::new()
                .push("Your tag is ")
                .push(Bold + msg.author.tag())
                .build();

            let _ = msg.channel_id.say(&context.http, &content).await;
        }
    }
}
let mut client =Client::builder("token").event_handler(Handler).await?;

client.start().await?;

pub async fn nick_in<'_>(
    &'_ self,
    cache_http: impl CacheHttp,
    guild_id: impl Into<GuildId>
) -> Option<String>
[src]

Returns the user's nickname in the given guild_id.

If none is used, it returns None.

pub fn await_reply<'a>(
    &self,
    shard_messenger: &'a impl AsRef<ShardMessenger>
) -> CollectReply<'a>

Notable traits for CollectReply<'a>

impl<'a> Future for CollectReply<'a> type Output = Option<Arc<Message>>;
[src]

Returns a future that will await one message by this user.

pub fn await_replies<'a>(
    &self,
    shard_messenger: &'a impl AsRef<ShardMessenger>
) -> MessageCollectorBuilder<'a>

Notable traits for MessageCollectorBuilder<'a>

impl<'a> Future for MessageCollectorBuilder<'a> type Output = MessageCollector;
[src]

Returns a stream builder which can be awaited to obtain a stream of messages sent by this user.

pub fn await_reaction<'a>(
    &self,
    shard_messenger: &'a impl AsRef<ShardMessenger>
) -> CollectReaction<'a>

Notable traits for CollectReaction<'a>

impl<'a> Future for CollectReaction<'a> type Output = Option<Arc<ReactionAction>>;
[src]

Await a single reaction by this user.

pub fn await_reactions<'a>(
    &self,
    shard_messenger: &'a impl AsRef<ShardMessenger>
) -> ReactionCollectorBuilder<'a>
[src]

Returns a stream builder which can be awaited to obtain a stream of reactions sent by this user.

Trait Implementations

impl Clone for User[src]

impl Debug for User[src]

impl Default for User[src]

fn default() -> Self[src]

Initializes a User with default values. Setting the following:

  • id to UserId(210)
  • avatar to Some("abc")
  • bot to true.
  • discriminator to 1432.
  • name to "test".

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

impl Display for User[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats a string which will mention the user.

impl Eq for User[src]

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

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

fn from(user: &User) -> UserId[src]

Gets the Id of a User.

impl From<CurrentUser> for User[src]

impl From<User> for UserId[src]

fn from(user: User) -> UserId[src]

Gets the Id of a User.

impl Hash for User[src]

impl Mentionable for User[src]

impl PartialEq<User> for User[src]

impl Serialize for User[src]

Auto Trait Implementations

impl RefUnwindSafe for User

impl Send for User

impl Sync for User

impl Unpin for User

impl UnwindSafe for User

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[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> ToString for T where
    T: Display + ?Sized
[src]

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]