Struct serenity::model::id::UserId

source ·
#[repr(packed(1))]
pub struct UserId(/* private fields */);
Expand description

An identifier for a User

Implementations§

source§

impl UserId

source

pub const fn new(id: u64) -> Self

Creates a new UserId from a u64.

§Panics

Panics if id is zero.

source

pub const fn get(self) -> u64

Retrieves the inner id as a u64.

source

pub fn created_at(&self) -> Timestamp

Retrieves the time that the UserId was created.

source§

impl UserId

source

pub async fn create_dm_channel( self, cache_http: impl CacheHttp ) -> Result<PrivateChannel>

Available on crate feature model only.

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

§Errors

Returns Error::Http if a User with that UserId does not exist, or is otherwise unavailable.

May also return an Error::Json if there is an error in deserializing the channel data returned by the Discord API.

source

pub async fn direct_message( self, cache_http: impl CacheHttp, builder: CreateMessage ) -> Result<Message>

Available on crate feature model only.

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

use serenity::builder::CreateMessage;

#[serenity::async_trait]
impl EventHandler for Handler {
    async fn message(&self, ctx: Context, msg: Message) {
        if msg.content == "~help" {
            let builder = CreateMessage::new().content("Helpful info here.");

            if let Err(why) = msg.author.id.direct_message(&ctx, builder).await {
                println!("Err sending help: {why:?}");
                let _ = msg.reply(&ctx, "There was an error DMing you help.").await;
            };
        }
    }
}
§Errors

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

May also return an Error::Http if the user cannot be sent a direct message.

Returns an Error::Json if there is an error deserializing the API response.

source

pub async fn dm( self, cache_http: impl CacheHttp, builder: CreateMessage ) -> Result<Message>

Available on crate feature model only.

This is an alias of Self::direct_message.

source

pub fn to_user_cached(self, cache: &impl AsRef<Cache>) -> Option<UserRef<'_>>

Available on crate features model and cache only.

Attempts to find a User by its Id in the cache.

source

pub async fn to_user(self, cache_http: impl CacheHttp) -> Result<User>

Available on crate feature model only.

First attempts to find a User by its Id in the cache, upon failure requests it via the REST API.

Note: If the cache is not enabled, REST API will be used only.

Note: If the cache is enabled, you might want to enable the temp_cache feature to cache user data retrieved by this function for a short duration.

§Errors

May return an Error::Http if a User with that UserId does not exist, or otherwise cannot be fetched.

May also return an Error::Json if there is an error in deserializing the user.

Trait Implementations§

source§

impl AsRef<UserId> for UserId

source§

fn as_ref(&self) -> &Self

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl Clone for UserId

source§

fn clone(&self) -> UserId

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for UserId

source§

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

Formats the value using the given formatter. Read more
source§

impl Default for UserId

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for UserId

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Display for UserId

source§

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

Formats the value using the given formatter. Read more
source§

impl<'a> From<&'a Member> for UserId

source§

fn from(member: &Member) -> UserId

Gets the Id of a Member.

source§

impl<'a> From<&'a User> for UserId

source§

fn from(user: &User) -> UserId

Gets the Id of a User.

source§

impl<'a> From<&'a UserId> for UserId

source§

fn from(id: &'a UserId) -> UserId

Converts to this type from the input type.
source§

impl From<CommandPermissionId> for UserId

source§

fn from(id: CommandPermissionId) -> Self

Converts to this type from the input type.
source§

impl From<Member> for UserId

source§

fn from(member: Member) -> UserId

Gets the Id of a Member.

source§

impl From<NonZero<u64>> for UserId

source§

fn from(id: NonZeroU64) -> UserId

Converts to this type from the input type.
source§

impl From<TargetId> for UserId

source§

fn from(id: TargetId) -> Self

Converts to this type from the input type.
source§

impl From<User> for UserId

source§

fn from(user: User) -> UserId

Gets the Id of a User.

source§

impl From<UserId> for CommandPermissionId

source§

fn from(id: UserId) -> Self

Converts to this type from the input type.
source§

impl From<UserId> for Mention

source§

fn from(value: UserId) -> Self

Converts to this type from the input type.
source§

impl From<UserId> for NonZeroI64

source§

fn from(id: UserId) -> NonZeroI64

Converts to this type from the input type.
source§

impl From<UserId> for NonZeroU64

source§

fn from(id: UserId) -> NonZeroU64

Converts to this type from the input type.
source§

impl From<UserId> for TargetId

source§

fn from(id: UserId) -> Self

Converts to this type from the input type.
source§

impl From<UserId> for i64

source§

fn from(id: UserId) -> i64

Converts to this type from the input type.
source§

impl From<UserId> for u64

source§

fn from(id: UserId) -> u64

Converts to this type from the input type.
source§

impl From<u64> for UserId

source§

fn from(id: u64) -> UserId

Converts to this type from the input type.
source§

impl FromStr for UserId

§

type Err = <u64 as FromStr>::Err

The associated error which can be returned from parsing.
source§

fn from_str(s: &str) -> Result<Self, Self::Err>

Parses a string s to return a value of this type. Read more
source§

impl Hash for UserId

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl Ord for UserId

source§

fn cmp(&self, other: &UserId) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl PartialEq<u64> for UserId

source§

fn eq(&self, u: &u64) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq for UserId

source§

fn eq(&self, other: &UserId) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd for UserId

source§

fn partial_cmp(&self, other: &UserId) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Serialize for UserId

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Copy for UserId

source§

impl Eq for UserId

source§

impl StructuralPartialEq for UserId

Auto Trait Implementations§

§

impl Freeze for UserId

§

impl RefUnwindSafe for UserId

§

impl Send for UserId

§

impl Sync for UserId

§

impl Unpin for UserId

§

impl UnwindSafe for UserId

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> ArgumentConvert for T
where T: FromStr,

§

type Err = <T as FromStr>::Err

Available on crate features utils and client only.
The associated error which can be returned from parsing.
source§

fn convert<'life0, 'async_trait>( __arg0: impl CacheHttp + 'async_trait, __arg1: Option<GuildId>, __arg2: Option<ChannelId>, s: &'life0 str ) -> Pin<Box<dyn Future<Output = Result<T, <T as ArgumentConvert>::Err>> + Send + 'async_trait>>
where 'life0: 'async_trait, T: 'async_trait,

Available on crate features utils and client only.
Parses a string s as a command parameter of this type.
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneDebuggableStorage for T

source§

impl<T> CloneableStorage for T
where T: Any + Send + Sync + Clone,

source§

impl<Q, K> Comparable<K> for Q
where Q: Ord + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn compare(&self, key: &K) -> Ordering

Compare self to key and return their ordering.
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Mentionable for T
where T: Into<Mention> + Copy,

source§

fn mention(&self) -> Mention

Creates a Mention that will be able to notify or create a link to the item. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

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

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> DebuggableStorage for T
where T: Any + Send + Sync + Debug,

source§

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