pub struct InteractionApplicationCommandCallbackDataFlags { /* private fields */ }Expand description
The flags for an interaction response message.
Implementations§
source§impl MessageFlags
impl MessageFlags
sourcepub const SUPPRESS_EMBEDS: MessageFlags = _
pub const SUPPRESS_EMBEDS: MessageFlags = _
Do not include any embeds when serializing this message.
sourcepub const EPHEMERAL: MessageFlags = _
pub const EPHEMERAL: MessageFlags = _
Interaction message will only be visible to sender and will be quickly deleted.
sourcepub const fn empty() -> MessageFlags
pub const fn empty() -> MessageFlags
Returns an empty set of flags.
sourcepub const fn all() -> MessageFlags
pub const fn all() -> MessageFlags
Returns the set containing all flags.
sourcepub const fn from_bits(bits: u64) -> Option<MessageFlags>
pub const fn from_bits(bits: u64) -> Option<MessageFlags>
Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
sourcepub const fn from_bits_truncate(bits: u64) -> MessageFlags
pub const fn from_bits_truncate(bits: u64) -> MessageFlags
Convert from underlying bit representation, dropping any bits that do not correspond to flags.
sourcepub const unsafe fn from_bits_unchecked(bits: u64) -> MessageFlags
pub const unsafe fn from_bits_unchecked(bits: u64) -> MessageFlags
Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).
Safety
The caller of the bitflags! macro can chose to allow or
disallow extra bits for their bitflags type.
The caller of from_bits_unchecked() has to ensure that
all bits correspond to a defined flag or that extra bits
are valid for this bitflags type.
sourcepub const fn intersects(&self, other: MessageFlags) -> bool
pub const fn intersects(&self, other: MessageFlags) -> bool
Returns true if there are flags common to both self and other.
sourcepub const fn contains(&self, other: MessageFlags) -> bool
pub const fn contains(&self, other: MessageFlags) -> bool
Returns true if all of the flags in other are contained within self.
sourcepub fn insert(&mut self, other: MessageFlags)
pub fn insert(&mut self, other: MessageFlags)
Inserts the specified flags in-place.
sourcepub fn remove(&mut self, other: MessageFlags)
pub fn remove(&mut self, other: MessageFlags)
Removes the specified flags in-place.
sourcepub fn toggle(&mut self, other: MessageFlags)
pub fn toggle(&mut self, other: MessageFlags)
Toggles the specified flags in-place.
sourcepub fn set(&mut self, other: MessageFlags, value: bool)
pub fn set(&mut self, other: MessageFlags, value: bool)
Inserts or removes the specified flags depending on the passed value.
sourcepub const fn intersection(self, other: MessageFlags) -> MessageFlags
pub const fn intersection(self, other: MessageFlags) -> MessageFlags
Returns the intersection between the flags in self and
other.
Specifically, the returned set contains only the flags which are
present in both self and other.
This is equivalent to using the & operator (e.g.
ops::BitAnd), as in flags & other.
sourcepub const fn union(self, other: MessageFlags) -> MessageFlags
pub const fn union(self, other: MessageFlags) -> MessageFlags
Returns the union of between the flags in self and other.
Specifically, the returned set contains all flags which are
present in either self or other, including any which are
present in both (see Self::symmetric_difference if that
is undesirable).
This is equivalent to using the | operator (e.g.
ops::BitOr), as in flags | other.
sourcepub const fn difference(self, other: MessageFlags) -> MessageFlags
pub const fn difference(self, other: MessageFlags) -> MessageFlags
Returns the difference between the flags in self and other.
Specifically, the returned set contains all flags present in
self, except for the ones present in other.
It is also conceptually equivalent to the “bit-clear” operation:
flags & !other (and this syntax is also supported).
This is equivalent to using the - operator (e.g.
ops::Sub), as in flags - other.
sourcepub const fn symmetric_difference(self, other: MessageFlags) -> MessageFlags
pub const fn symmetric_difference(self, other: MessageFlags) -> MessageFlags
Returns the symmetric difference between the flags
in self and other.
Specifically, the returned set contains the flags present which
are present in self or other, but that are not present in
both. Equivalently, it contains the flags present in exactly
one of the sets self and other.
This is equivalent to using the ^ operator (e.g.
ops::BitXor), as in flags ^ other.
sourcepub const fn complement(self) -> MessageFlags
pub const fn complement(self) -> MessageFlags
Returns the complement of this set of flags.
Specifically, the returned set contains all the flags which are
not set in self, but which are allowed for this type.
Alternatively, it can be thought of as the set difference
between Self::all() and self (e.g. Self::all() - self)
This is equivalent to using the ! operator (e.g.
ops::Not), as in !flags.
Trait Implementations§
source§impl Binary for MessageFlags
impl Binary for MessageFlags
source§impl BitAnd<MessageFlags> for MessageFlags
impl BitAnd<MessageFlags> for MessageFlags
source§fn bitand(self, other: MessageFlags) -> MessageFlags
fn bitand(self, other: MessageFlags) -> MessageFlags
Returns the intersection between the two sets of flags.
§type Output = MessageFlags
type Output = MessageFlags
& operator.source§impl BitAndAssign<MessageFlags> for MessageFlags
impl BitAndAssign<MessageFlags> for MessageFlags
source§fn bitand_assign(&mut self, other: MessageFlags)
fn bitand_assign(&mut self, other: MessageFlags)
Disables all flags disabled in the set.
source§impl BitOr<MessageFlags> for MessageFlags
impl BitOr<MessageFlags> for MessageFlags
source§fn bitor(self, other: MessageFlags) -> MessageFlags
fn bitor(self, other: MessageFlags) -> MessageFlags
Returns the union of the two sets of flags.
§type Output = MessageFlags
type Output = MessageFlags
| operator.source§impl BitOrAssign<MessageFlags> for MessageFlags
impl BitOrAssign<MessageFlags> for MessageFlags
source§fn bitor_assign(&mut self, other: MessageFlags)
fn bitor_assign(&mut self, other: MessageFlags)
Adds the set of flags.
source§impl BitXor<MessageFlags> for MessageFlags
impl BitXor<MessageFlags> for MessageFlags
source§fn bitxor(self, other: MessageFlags) -> MessageFlags
fn bitxor(self, other: MessageFlags) -> MessageFlags
Returns the left flags, but with all the right flags toggled.
§type Output = MessageFlags
type Output = MessageFlags
^ operator.source§impl BitXorAssign<MessageFlags> for MessageFlags
impl BitXorAssign<MessageFlags> for MessageFlags
source§fn bitxor_assign(&mut self, other: MessageFlags)
fn bitxor_assign(&mut self, other: MessageFlags)
Toggles the set of flags.
source§impl Clone for MessageFlags
impl Clone for MessageFlags
source§fn clone(&self) -> MessageFlags
fn clone(&self) -> MessageFlags
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for MessageFlags
impl Debug for MessageFlags
source§impl Default for MessageFlags
impl Default for MessageFlags
source§fn default() -> MessageFlags
fn default() -> MessageFlags
source§impl<'de> Deserialize<'de> for MessageFlags
impl<'de> Deserialize<'de> for MessageFlags
source§fn deserialize<D>(
deserializer: D
) -> Result<MessageFlags, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>( deserializer: D ) -> Result<MessageFlags, <D as Deserializer<'de>>::Error>where D: Deserializer<'de>,
source§impl Extend<MessageFlags> for MessageFlags
impl Extend<MessageFlags> for MessageFlags
source§fn extend<T>(&mut self, iterator: T)where
T: IntoIterator<Item = MessageFlags>,
fn extend<T>(&mut self, iterator: T)where T: IntoIterator<Item = MessageFlags>,
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 FromIterator<MessageFlags> for MessageFlags
impl FromIterator<MessageFlags> for MessageFlags
source§fn from_iter<T>(iterator: T) -> MessageFlagswhere
T: IntoIterator<Item = MessageFlags>,
fn from_iter<T>(iterator: T) -> MessageFlagswhere T: IntoIterator<Item = MessageFlags>,
source§impl Hash for MessageFlags
impl Hash for MessageFlags
source§impl LowerHex for MessageFlags
impl LowerHex for MessageFlags
source§impl Not for MessageFlags
impl Not for MessageFlags
source§fn not(self) -> MessageFlags
fn not(self) -> MessageFlags
Returns the complement of this set of flags.
§type Output = MessageFlags
type Output = MessageFlags
! operator.source§impl Octal for MessageFlags
impl Octal for MessageFlags
source§impl Ord for MessageFlags
impl Ord for MessageFlags
source§fn cmp(&self, other: &MessageFlags) -> Ordering
fn cmp(&self, other: &MessageFlags) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
source§impl PartialEq<MessageFlags> for MessageFlags
impl PartialEq<MessageFlags> for MessageFlags
source§fn eq(&self, other: &MessageFlags) -> bool
fn eq(&self, other: &MessageFlags) -> bool
self and other values to be equal, and is used
by ==.source§impl PartialOrd<MessageFlags> for MessageFlags
impl PartialOrd<MessageFlags> for MessageFlags
source§fn partial_cmp(&self, other: &MessageFlags) -> Option<Ordering>
fn partial_cmp(&self, other: &MessageFlags) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self and other) and is used by the <=
operator. Read moresource§impl Serialize for MessageFlags
impl Serialize for MessageFlags
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<MessageFlags> for MessageFlags
impl Sub<MessageFlags> for MessageFlags
source§fn sub(self, other: MessageFlags) -> MessageFlags
fn sub(self, other: MessageFlags) -> MessageFlags
Returns the set difference of the two sets of flags.
§type Output = MessageFlags
type Output = MessageFlags
- operator.source§impl SubAssign<MessageFlags> for MessageFlags
impl SubAssign<MessageFlags> for MessageFlags
source§fn sub_assign(&mut self, other: MessageFlags)
fn sub_assign(&mut self, other: MessageFlags)
Disables all flags enabled in the set.