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: Self = _
pub const GUILDS: Self = _
Guilds intent.
Event(s) received:
GUILD_CREATE
GUILD_UPDATE
GUILD_DELETE
GUILD_ROLE_CREATE
GUILD_ROLE_UPDATE
GUILD_ROLE_DELETE
CHANNEL_CREATE
CHANNEL_UPDATE
CHANNEL_DELETE
CHANNEL_PINS_UPDATE
THREAD_CREATE
THREAD_UPDATE
THREAD_DELETE
THREAD_LIST_SYNC
THREAD_MEMBER_UPDATE
THREAD_MEMBERS_UPDATE
STAGE_INSTANCE_CREATE
STAGE_INSTANCE_UPDATE
STAGE_INSTANCE_DELETE
sourcepub const GUILD_MEMBERS: Self = _
pub const GUILD_MEMBERS: Self = _
Guild members intent.
This intent is privileged. See Discord Docs/Privileged Intents.
Event(s) received:
sourcepub const GUILD_MODERATION: Self = _
pub const GUILD_MODERATION: Self = _
Guild moderation intent.
Event(s) received:
sourcepub const GUILD_EMOJIS_AND_STICKERS: Self = _
pub const GUILD_EMOJIS_AND_STICKERS: Self = _
sourcepub const GUILD_INTEGRATIONS: Self = _
pub const GUILD_INTEGRATIONS: Self = _
Guild integrations intent.
Event(s) received:
sourcepub const GUILD_WEBHOOKS: Self = _
pub const GUILD_WEBHOOKS: Self = _
sourcepub const GUILD_INVITES: Self = _
pub const GUILD_INVITES: Self = _
sourcepub const GUILD_VOICE_STATES: Self = _
pub const GUILD_VOICE_STATES: Self = _
sourcepub const GUILD_PRESENCES: Self = _
pub const GUILD_PRESENCES: Self = _
Guild presences intent.
This intent is privileged. See Discord Docs/Privileged Intents.
Event(s) received:
sourcepub const GUILD_MESSAGES: Self = _
pub const GUILD_MESSAGES: Self = _
Guild messages intent.
Event(s) received:
sourcepub const GUILD_MESSAGE_REACTIONS: Self = _
pub const GUILD_MESSAGE_REACTIONS: Self = _
Guild message reactions intent.
Event(s) received:
sourcepub const GUILD_MESSAGE_TYPING: Self = _
pub const GUILD_MESSAGE_TYPING: Self = _
sourcepub const DIRECT_MESSAGES: Self = _
pub const DIRECT_MESSAGES: Self = _
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: Self = _
pub const DIRECT_MESSAGE_REACTIONS: Self = _
Direct message reactions intent.
Event(s) received:
MESSAGE_REACTION_ADD
MESSAGE_REACTION_REMOVE
MESSAGE_REACTION_REMOVE_ALL
MESSAGE_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: Self = _
pub const DIRECT_MESSAGE_TYPING: Self = _
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: Self = _
pub const MESSAGE_CONTENT: Self = _
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: Self = _
pub const GUILD_SCHEDULED_EVENTS: Self = _
Guild scheduled events intent.
Event(s) received:
sourcepub const AUTO_MODERATION_CONFIGURATION: Self = _
pub const AUTO_MODERATION_CONFIGURATION: Self = _
Auto moderation configuration intent.
Event(s) received:
sourcepub const AUTO_MODERATION_EXECUTION: Self = _
pub const AUTO_MODERATION_EXECUTION: Self = _
sourcepub const GUILD_MESSAGE_POLLS: Self = _
pub const GUILD_MESSAGE_POLLS: Self = _
sourcepub const DIRECT_MESSAGE_POLLS: Self = _
pub const DIRECT_MESSAGE_POLLS: Self = _
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<Self>
pub const fn from_bits(bits: u64) -> Option<Self>
Convert from a bits value.
This method will return None
if any unknown bits are set.
sourcepub const fn from_bits_truncate(bits: u64) -> Self
pub const fn from_bits_truncate(bits: u64) -> Self
Convert from a bits value, unsetting any unknown bits.
sourcepub const fn from_bits_retain(bits: u64) -> Self
pub const fn from_bits_retain(bits: u64) -> Self
Convert from a bits value exactly.
sourcepub fn from_name(name: &str) -> Option<Self>
pub fn from_name(name: &str) -> Option<Self>
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: Self) -> bool
pub const fn intersects(&self, other: Self) -> bool
Whether any set bits in a source flags value are also set in a target flags value.
sourcepub const fn contains(&self, other: Self) -> bool
pub const fn contains(&self, other: Self) -> bool
Whether all set bits in a source flags value are also set in a target flags value.
sourcepub fn remove(&mut self, other: Self)
pub fn remove(&mut self, other: Self)
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: Self)
pub fn toggle(&mut self, other: Self)
The bitwise exclusive-or (^
) of the bits in two flags values.
sourcepub fn set(&mut self, other: Self, value: bool)
pub fn set(&mut self, other: Self, value: bool)
Call insert
when value
is true
or remove
when value
is false
.
sourcepub const fn intersection(self, other: Self) -> Self
pub const fn intersection(self, other: Self) -> Self
The bitwise and (&
) of the bits in two flags values.
sourcepub const fn union(self, other: Self) -> Self
pub const fn union(self, other: Self) -> Self
The bitwise or (|
) of the bits in two flags values.
sourcepub const fn difference(self, other: Self) -> Self
pub const fn difference(self, other: Self) -> Self
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: Self) -> Self
pub const fn symmetric_difference(self, other: Self) -> Self
The bitwise exclusive-or (^
) of the bits in two flags values.
sourcepub const fn complement(self) -> Self
pub const fn complement(self) -> Self
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: Self)
fn bitand_assign(&mut self, other: Self)
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: Self)
fn bitor_assign(&mut self, other: Self)
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: Self)
fn bitxor_assign(&mut self, other: Self)
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<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
source§impl Extend<Intents> for Intents
impl Extend<Intents> for Intents
source§fn extend<T: IntoIterator<Item = Self>>(&mut self, iterator: T)
fn extend<T: IntoIterator<Item = Self>>(&mut self, iterator: T)
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
§fn from_bits_truncate(bits: Self::Bits) -> Self
fn from_bits_truncate(bits: Self::Bits) -> Self
§fn from_name(name: &str) -> Option<Self>
fn from_name(name: &str) -> Option<Self>
§fn iter_names(&self) -> IterNames<Self>
fn iter_names(&self) -> IterNames<Self>
§fn intersects(&self, other: Self) -> boolwhere
Self: Sized,
fn intersects(&self, other: Self) -> boolwhere
Self: Sized,
§fn contains(&self, other: Self) -> boolwhere
Self: Sized,
fn contains(&self, other: Self) -> boolwhere
Self: Sized,
§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.§fn remove(&mut self, other: Self)where
Self: Sized,
fn remove(&mut self, other: Self)where
Self: Sized,
&!
). Read more§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.§fn set(&mut self, other: Self, value: bool)where
Self: Sized,
fn set(&mut self, other: Self, value: bool)where
Self: Sized,
Flags::insert
] when value
is true
or [Flags::remove
] when value
is false
.§fn intersection(self, other: Self) -> Self
fn intersection(self, other: Self) -> Self
&
) of the bits in two flags values.§fn difference(self, other: Self) -> Self
fn difference(self, other: Self) -> Self
&!
). Read more§fn symmetric_difference(self, other: Self) -> Self
fn symmetric_difference(self, other: Self) -> Self
^
) of the bits in two flags values.§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§fn from_iter<T: IntoIterator<Item = Self>>(iterator: T) -> Self
fn from_iter<T: IntoIterator<Item = Self>>(iterator: T) -> Self
The bitwise or (|
) of the bits in each flags value.
source§impl IntoIterator for Intents
impl IntoIterator for Intents
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: Self)
fn sub_assign(&mut self, other: Self)
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)