pub struct Intents(/* private fields */);Expand description
Gateway intents.
Developers must specify intents when connecting to the gateway. The
intents specified correspond with the events received. To specify
multiple intents, create a union using the | operator. See
Discord Docs/Gateway Intents.
Implementations§
Source§impl Intents
impl Intents
Sourcepub const GUILDS: Intents
pub const GUILDS: Intents
Guilds intent.
Event(s) received:
GUILD_CREATEGUILD_UPDATEGUILD_DELETEGUILD_ROLE_CREATEGUILD_ROLE_UPDATEGUILD_ROLE_DELETECHANNEL_CREATECHANNEL_UPDATECHANNEL_DELETECHANNEL_PINS_UPDATETHREAD_CREATETHREAD_UPDATETHREAD_DELETETHREAD_LIST_SYNCTHREAD_MEMBER_UPDATETHREAD_MEMBERS_UPDATESTAGE_INSTANCE_CREATESTAGE_INSTANCE_UPDATESTAGE_INSTANCE_DELETE
Sourcepub const GUILD_MEMBERS: Intents
pub const GUILD_MEMBERS: Intents
Guild members intent.
This intent is privileged. See Discord Docs/Privileged Intents.
Event(s) received:
Sourcepub const GUILD_MODERATION: Intents
pub const GUILD_MODERATION: Intents
Guild moderation intent.
Event(s) received:
Sourcepub const GUILD_EMOJIS_AND_STICKERS: Intents
pub const GUILD_EMOJIS_AND_STICKERS: Intents
Sourcepub const GUILD_INTEGRATIONS: Intents
pub const GUILD_INTEGRATIONS: Intents
Guild integrations intent.
Event(s) received:
Sourcepub const GUILD_WEBHOOKS: Intents
pub const GUILD_WEBHOOKS: Intents
Sourcepub const GUILD_INVITES: Intents
pub const GUILD_INVITES: Intents
Sourcepub const GUILD_VOICE_STATES: Intents
pub const GUILD_VOICE_STATES: Intents
Sourcepub const GUILD_PRESENCES: Intents
pub const GUILD_PRESENCES: Intents
Guild presences intent.
This intent is privileged. See Discord Docs/Privileged Intents.
Event(s) received:
Sourcepub const GUILD_MESSAGES: Intents
pub const GUILD_MESSAGES: Intents
Guild messages intent.
Event(s) received:
Sourcepub const GUILD_MESSAGE_REACTIONS: Intents
pub const GUILD_MESSAGE_REACTIONS: Intents
Guild message reactions intent.
Event(s) received:
Sourcepub const GUILD_MESSAGE_TYPING: Intents
pub const GUILD_MESSAGE_TYPING: Intents
Sourcepub const DIRECT_MESSAGES: Intents
pub const DIRECT_MESSAGES: Intents
Direct messages intent.
Event(s) received:
This is different from the GUILD_MESSAGES intent in that the bot
will receive message events from locations other than guilds.
Sourcepub const DIRECT_MESSAGE_REACTIONS: Intents
pub const DIRECT_MESSAGE_REACTIONS: Intents
Direct message reactions intent.
Event(s) received:
MESSAGE_REACTION_ADDMESSAGE_REACTION_REMOVEMESSAGE_REACTION_REMOVE_ALLMESSAGE_REACTION_REMOVE_EMOJI
This is different from the GUILD_MESSAGE_REACTIONS event in that
the bot will receive message reaction events from locations other
than guilds.
Sourcepub const DIRECT_MESSAGE_TYPING: Intents
pub const DIRECT_MESSAGE_TYPING: Intents
Direct message typing intent.
Event(s) received:
This is different from the GUILD_MESSAGE_TYPING intent in that
the bot will receive typing start events from locations other than
guilds.
Sourcepub const MESSAGE_CONTENT: Intents
pub const MESSAGE_CONTENT: Intents
Message content intent.
This intent is privileged. See Discord Docs/Privileged Intents.
This intent allows you to receive the contents of all messages.
Sourcepub const GUILD_SCHEDULED_EVENTS: Intents
pub const GUILD_SCHEDULED_EVENTS: Intents
Guild scheduled events intent.
Event(s) received:
Sourcepub const AUTO_MODERATION_CONFIGURATION: Intents
pub const AUTO_MODERATION_CONFIGURATION: Intents
Auto moderation configuration intent.
Event(s) received:
Sourcepub const AUTO_MODERATION_EXECUTION: Intents
pub const AUTO_MODERATION_EXECUTION: Intents
Sourcepub const GUILD_MESSAGE_POLLS: Intents
pub const GUILD_MESSAGE_POLLS: Intents
Sourcepub const DIRECT_MESSAGE_POLLS: Intents
pub const DIRECT_MESSAGE_POLLS: Intents
Source§impl Intents
impl Intents
Sourcepub const fn bits(&self) -> u64
pub const fn bits(&self) -> u64
Get the underlying bits value.
The returned value is exactly the bits set in this flags value.
Sourcepub const fn from_bits(bits: u64) -> Option<Intents>
pub const fn from_bits(bits: u64) -> Option<Intents>
Convert from a bits value.
This method will return None if any unknown bits are set.
Sourcepub const fn from_bits_truncate(bits: u64) -> Intents
pub const fn from_bits_truncate(bits: u64) -> Intents
Convert from a bits value, unsetting any unknown bits.
Sourcepub const fn from_bits_retain(bits: u64) -> Intents
pub const fn from_bits_retain(bits: u64) -> Intents
Convert from a bits value exactly.
Sourcepub fn from_name(name: &str) -> Option<Intents>
pub fn from_name(name: &str) -> Option<Intents>
Get a flags value with the bits of a flag with the given name set.
This method will return None if name is empty or doesn’t
correspond to any named flag.
Sourcepub const fn intersects(&self, other: Intents) -> bool
pub const fn intersects(&self, other: Intents) -> bool
Whether any set bits in a source flags value are also set in a target flags value.
Sourcepub const fn contains(&self, other: Intents) -> bool
pub const fn contains(&self, other: Intents) -> bool
Whether all set bits in a source flags value are also set in a target flags value.
Sourcepub fn remove(&mut self, other: Intents)
pub fn remove(&mut self, other: Intents)
The intersection of a source flags value with the complement of a target flags
value (&!).
This method is not equivalent to self & !other when other has unknown bits set.
remove won’t truncate other, but the ! operator will.
Sourcepub fn toggle(&mut self, other: Intents)
pub fn toggle(&mut self, other: Intents)
The bitwise exclusive-or (^) of the bits in two flags values.
Sourcepub fn set(&mut self, other: Intents, value: bool)
pub fn set(&mut self, other: Intents, value: bool)
Call insert when value is true or remove when value is false.
Sourcepub const fn intersection(self, other: Intents) -> Intents
pub const fn intersection(self, other: Intents) -> Intents
The bitwise and (&) of the bits in two flags values.
Sourcepub const fn union(self, other: Intents) -> Intents
pub const fn union(self, other: Intents) -> Intents
The bitwise or (|) of the bits in two flags values.
Sourcepub const fn difference(self, other: Intents) -> Intents
pub const fn difference(self, other: Intents) -> Intents
The intersection of a source flags value with the complement of a target flags
value (&!).
This method is not equivalent to self & !other when other has unknown bits set.
difference won’t truncate other, but the ! operator will.
Sourcepub const fn symmetric_difference(self, other: Intents) -> Intents
pub const fn symmetric_difference(self, other: Intents) -> Intents
The bitwise exclusive-or (^) of the bits in two flags values.
Sourcepub const fn complement(self) -> Intents
pub const fn complement(self) -> Intents
The bitwise negation (!) of the bits in a flags value, truncating the result.
Source§impl Intents
impl Intents
Sourcepub const fn iter(&self) -> Iter<Intents>
pub const fn iter(&self) -> Iter<Intents>
Yield a set of contained flags values.
Each yielded flags value will correspond to a defined named flag. Any unknown bits will be yielded together as a final flags value.
Sourcepub const fn iter_names(&self) -> IterNames<Intents>
pub const fn iter_names(&self) -> IterNames<Intents>
Yield a set of contained named flags values.
This method is like iter, except only yields bits in contained named flags.
Any unknown bits, or bits not corresponding to a contained flag will not be yielded.
Trait Implementations§
Source§impl BitAndAssign for Intents
impl BitAndAssign for Intents
Source§fn bitand_assign(&mut self, other: Intents)
fn bitand_assign(&mut self, other: Intents)
The bitwise and (&) of the bits in two flags values.
Source§impl BitOrAssign for Intents
impl BitOrAssign for Intents
Source§fn bitor_assign(&mut self, other: Intents)
fn bitor_assign(&mut self, other: Intents)
The bitwise or (|) of the bits in two flags values.
Source§impl BitXorAssign for Intents
impl BitXorAssign for Intents
Source§fn bitxor_assign(&mut self, other: Intents)
fn bitxor_assign(&mut self, other: Intents)
The bitwise exclusive-or (^) of the bits in two flags values.
Source§impl<'de> Deserialize<'de> for Intents
impl<'de> Deserialize<'de> for Intents
Source§fn deserialize<D>(
deserializer: D,
) -> Result<Intents, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<Intents, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Source§impl Extend<Intents> for Intents
impl Extend<Intents> for Intents
Source§fn extend<T>(&mut self, iterator: T)where
T: IntoIterator<Item = Intents>,
fn extend<T>(&mut self, iterator: T)where
T: IntoIterator<Item = Intents>,
The bitwise or (|) of the bits in each flags value.
Source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
extend_one)Source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one)Source§impl Flags for Intents
impl Flags for Intents
Source§fn from_bits_retain(bits: u64) -> Intents
fn from_bits_retain(bits: u64) -> Intents
Source§fn contains_unknown_bits(&self) -> bool
fn contains_unknown_bits(&self) -> bool
true if any unknown bits are set.Source§fn from_bits_truncate(bits: Self::Bits) -> Self
fn from_bits_truncate(bits: Self::Bits) -> Self
Source§fn from_name(name: &str) -> Option<Self>
fn from_name(name: &str) -> Option<Self>
Source§fn iter_names(&self) -> IterNames<Self>
fn iter_names(&self) -> IterNames<Self>
Source§fn intersects(&self, other: Self) -> boolwhere
Self: Sized,
fn intersects(&self, other: Self) -> boolwhere
Self: Sized,
Source§fn contains(&self, other: Self) -> boolwhere
Self: Sized,
fn contains(&self, other: Self) -> boolwhere
Self: Sized,
Source§fn insert(&mut self, other: Self)where
Self: Sized,
fn insert(&mut self, other: Self)where
Self: Sized,
|) of the bits in two flags values.Source§fn remove(&mut self, other: Self)where
Self: Sized,
fn remove(&mut self, other: Self)where
Self: Sized,
&!). Read moreSource§fn toggle(&mut self, other: Self)where
Self: Sized,
fn toggle(&mut self, other: Self)where
Self: Sized,
^) of the bits in two flags values.Source§fn intersection(self, other: Self) -> Self
fn intersection(self, other: Self) -> Self
&) of the bits in two flags values.Source§fn difference(self, other: Self) -> Self
fn difference(self, other: Self) -> Self
&!). Read moreSource§fn symmetric_difference(self, other: Self) -> Self
fn symmetric_difference(self, other: Self) -> Self
^) of the bits in two flags values.Source§fn complement(self) -> Self
fn complement(self) -> Self
!) of the bits in a flags value, truncating the result.Source§impl FromIterator<Intents> for Intents
impl FromIterator<Intents> for Intents
Source§impl IntoIterator for Intents
impl IntoIterator for Intents
Source§impl Serialize for Intents
impl Serialize for Intents
Source§fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
Source§impl Sub for Intents
impl Sub for Intents
Source§impl SubAssign for Intents
impl SubAssign for Intents
Source§fn sub_assign(&mut self, other: Intents)
fn sub_assign(&mut self, other: Intents)
The intersection of a source flags value with the complement of a target flags value (&!).
This method is not equivalent to self & !other when other has unknown bits set.
difference won’t truncate other, but the ! operator will.
impl Copy for Intents
impl Eq for Intents
impl StructuralPartialEq for Intents
Auto Trait Implementations§
impl Freeze for Intents
impl RefUnwindSafe for Intents
impl Send for Intents
impl Sync for Intents
impl Unpin for Intents
impl UnwindSafe for Intents
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.