Struct discord_flows::model::ActivityFlags
source · pub struct ActivityFlags { /* private fields */ }Expand description
A set of flags defining what is in an activity’s payload.
Implementations§
source§impl ActivityFlags
impl ActivityFlags
sourcepub const INSTANCE: ActivityFlags = _
pub const INSTANCE: ActivityFlags = _
Whether the activity is an instance activity.
sourcepub const JOIN: ActivityFlags = _
pub const JOIN: ActivityFlags = _
Whether the activity is joinable.
sourcepub const SPECTATE: ActivityFlags = _
pub const SPECTATE: ActivityFlags = _
Whether the activity can be spectated.
sourcepub const JOIN_REQUEST: ActivityFlags = _
pub const JOIN_REQUEST: ActivityFlags = _
Whether a request can be sent to join the user’s party.
sourcepub const SYNC: ActivityFlags = _
pub const SYNC: ActivityFlags = _
Whether the activity can be synced.
sourcepub const PLAY: ActivityFlags = _
pub const PLAY: ActivityFlags = _
Whether the activity can be played.
sourcepub const PARTY_PRIVACY_FRIENDS: ActivityFlags = _
pub const PARTY_PRIVACY_FRIENDS: ActivityFlags = _
Whether the activity party is friend only.
sourcepub const PARTY_PRIVACY_VOICE_CHANNEL: ActivityFlags = _
pub const PARTY_PRIVACY_VOICE_CHANNEL: ActivityFlags = _
Whether the activity party is in a voice channel.
sourcepub const EMBEDDED: ActivityFlags = _
pub const EMBEDDED: ActivityFlags = _
Whether the activity can be embedded.
sourcepub const fn empty() -> ActivityFlags
pub const fn empty() -> ActivityFlags
Returns an empty set of flags.
sourcepub const fn all() -> ActivityFlags
pub const fn all() -> ActivityFlags
Returns the set containing all flags.
sourcepub const fn from_bits(bits: u64) -> Option<ActivityFlags>
pub const fn from_bits(bits: u64) -> Option<ActivityFlags>
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) -> ActivityFlags
pub const fn from_bits_truncate(bits: u64) -> ActivityFlags
Convert from underlying bit representation, dropping any bits that do not correspond to flags.
sourcepub const unsafe fn from_bits_unchecked(bits: u64) -> ActivityFlags
pub const unsafe fn from_bits_unchecked(bits: u64) -> ActivityFlags
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: ActivityFlags) -> bool
pub const fn intersects(&self, other: ActivityFlags) -> bool
Returns true if there are flags common to both self and other.
sourcepub const fn contains(&self, other: ActivityFlags) -> bool
pub const fn contains(&self, other: ActivityFlags) -> bool
Returns true if all of the flags in other are contained within self.
sourcepub fn insert(&mut self, other: ActivityFlags)
pub fn insert(&mut self, other: ActivityFlags)
Inserts the specified flags in-place.
sourcepub fn remove(&mut self, other: ActivityFlags)
pub fn remove(&mut self, other: ActivityFlags)
Removes the specified flags in-place.
sourcepub fn toggle(&mut self, other: ActivityFlags)
pub fn toggle(&mut self, other: ActivityFlags)
Toggles the specified flags in-place.
sourcepub fn set(&mut self, other: ActivityFlags, value: bool)
pub fn set(&mut self, other: ActivityFlags, value: bool)
Inserts or removes the specified flags depending on the passed value.
sourcepub const fn intersection(self, other: ActivityFlags) -> ActivityFlags
pub const fn intersection(self, other: ActivityFlags) -> ActivityFlags
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: ActivityFlags) -> ActivityFlags
pub const fn union(self, other: ActivityFlags) -> ActivityFlags
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: ActivityFlags) -> ActivityFlags
pub const fn difference(self, other: ActivityFlags) -> ActivityFlags
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: ActivityFlags) -> ActivityFlags
pub const fn symmetric_difference(self, other: ActivityFlags) -> ActivityFlags
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) -> ActivityFlags
pub const fn complement(self) -> ActivityFlags
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 ActivityFlags
impl Binary for ActivityFlags
source§impl BitAnd<ActivityFlags> for ActivityFlags
impl BitAnd<ActivityFlags> for ActivityFlags
source§fn bitand(self, other: ActivityFlags) -> ActivityFlags
fn bitand(self, other: ActivityFlags) -> ActivityFlags
Returns the intersection between the two sets of flags.
§type Output = ActivityFlags
type Output = ActivityFlags
& operator.source§impl BitAndAssign<ActivityFlags> for ActivityFlags
impl BitAndAssign<ActivityFlags> for ActivityFlags
source§fn bitand_assign(&mut self, other: ActivityFlags)
fn bitand_assign(&mut self, other: ActivityFlags)
Disables all flags disabled in the set.
source§impl BitOr<ActivityFlags> for ActivityFlags
impl BitOr<ActivityFlags> for ActivityFlags
source§fn bitor(self, other: ActivityFlags) -> ActivityFlags
fn bitor(self, other: ActivityFlags) -> ActivityFlags
Returns the union of the two sets of flags.
§type Output = ActivityFlags
type Output = ActivityFlags
| operator.source§impl BitOrAssign<ActivityFlags> for ActivityFlags
impl BitOrAssign<ActivityFlags> for ActivityFlags
source§fn bitor_assign(&mut self, other: ActivityFlags)
fn bitor_assign(&mut self, other: ActivityFlags)
Adds the set of flags.
source§impl BitXor<ActivityFlags> for ActivityFlags
impl BitXor<ActivityFlags> for ActivityFlags
source§fn bitxor(self, other: ActivityFlags) -> ActivityFlags
fn bitxor(self, other: ActivityFlags) -> ActivityFlags
Returns the left flags, but with all the right flags toggled.
§type Output = ActivityFlags
type Output = ActivityFlags
^ operator.source§impl BitXorAssign<ActivityFlags> for ActivityFlags
impl BitXorAssign<ActivityFlags> for ActivityFlags
source§fn bitxor_assign(&mut self, other: ActivityFlags)
fn bitxor_assign(&mut self, other: ActivityFlags)
Toggles the set of flags.
source§impl Clone for ActivityFlags
impl Clone for ActivityFlags
source§fn clone(&self) -> ActivityFlags
fn clone(&self) -> ActivityFlags
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ActivityFlags
impl Debug for ActivityFlags
source§impl Default for ActivityFlags
impl Default for ActivityFlags
source§fn default() -> ActivityFlags
fn default() -> ActivityFlags
source§impl<'de> Deserialize<'de> for ActivityFlags
impl<'de> Deserialize<'de> for ActivityFlags
source§fn deserialize<D>(
deserializer: D
) -> Result<ActivityFlags, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>( deserializer: D ) -> Result<ActivityFlags, <D as Deserializer<'de>>::Error>where D: Deserializer<'de>,
source§impl Extend<ActivityFlags> for ActivityFlags
impl Extend<ActivityFlags> for ActivityFlags
source§fn extend<T>(&mut self, iterator: T)where
T: IntoIterator<Item = ActivityFlags>,
fn extend<T>(&mut self, iterator: T)where T: IntoIterator<Item = ActivityFlags>,
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<ActivityFlags> for ActivityFlags
impl FromIterator<ActivityFlags> for ActivityFlags
source§fn from_iter<T>(iterator: T) -> ActivityFlagswhere
T: IntoIterator<Item = ActivityFlags>,
fn from_iter<T>(iterator: T) -> ActivityFlagswhere T: IntoIterator<Item = ActivityFlags>,
source§impl Hash for ActivityFlags
impl Hash for ActivityFlags
source§impl LowerHex for ActivityFlags
impl LowerHex for ActivityFlags
source§impl Not for ActivityFlags
impl Not for ActivityFlags
source§fn not(self) -> ActivityFlags
fn not(self) -> ActivityFlags
Returns the complement of this set of flags.
§type Output = ActivityFlags
type Output = ActivityFlags
! operator.source§impl Octal for ActivityFlags
impl Octal for ActivityFlags
source§impl Ord for ActivityFlags
impl Ord for ActivityFlags
source§fn cmp(&self, other: &ActivityFlags) -> Ordering
fn cmp(&self, other: &ActivityFlags) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
source§impl PartialEq<ActivityFlags> for ActivityFlags
impl PartialEq<ActivityFlags> for ActivityFlags
source§fn eq(&self, other: &ActivityFlags) -> bool
fn eq(&self, other: &ActivityFlags) -> bool
self and other values to be equal, and is used
by ==.source§impl PartialOrd<ActivityFlags> for ActivityFlags
impl PartialOrd<ActivityFlags> for ActivityFlags
source§fn partial_cmp(&self, other: &ActivityFlags) -> Option<Ordering>
fn partial_cmp(&self, other: &ActivityFlags) -> 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 ActivityFlags
impl Serialize for ActivityFlags
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<ActivityFlags> for ActivityFlags
impl Sub<ActivityFlags> for ActivityFlags
source§fn sub(self, other: ActivityFlags) -> ActivityFlags
fn sub(self, other: ActivityFlags) -> ActivityFlags
Returns the set difference of the two sets of flags.
§type Output = ActivityFlags
type Output = ActivityFlags
- operator.source§impl SubAssign<ActivityFlags> for ActivityFlags
impl SubAssign<ActivityFlags> for ActivityFlags
source§fn sub_assign(&mut self, other: ActivityFlags)
fn sub_assign(&mut self, other: ActivityFlags)
Disables all flags enabled in the set.