#[non_exhaustive]pub enum ActivityType {
Playing,
Streaming,
Listening,
Watching,
Custom,
Competing,
Unknown(u8),
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
source§impl Clone for ActivityType
impl Clone for ActivityType
source§fn clone(&self) -> ActivityType
fn clone(&self) -> ActivityType
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ActivityType
impl Debug for ActivityType
source§impl Default for ActivityType
impl Default for ActivityType
source§impl<'de> Deserialize<'de> for ActivityType
impl<'de> Deserialize<'de> for ActivityType
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
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 From<ActivityType> for u8
impl From<ActivityType> for u8
source§fn from(value: ActivityType) -> Self
fn from(value: ActivityType) -> Self
Converts to this type from the input type.
source§impl From<u8> for ActivityType
impl From<u8> for ActivityType
source§impl Hash for ActivityType
impl Hash for ActivityType
source§impl PartialEq for ActivityType
impl PartialEq for ActivityType
source§impl Serialize for ActivityType
impl Serialize for ActivityType
impl Copy for ActivityType
impl Eq for ActivityType
impl StructuralPartialEq for ActivityType
Auto Trait Implementations§
impl Freeze for ActivityType
impl RefUnwindSafe for ActivityType
impl Send for ActivityType
impl Sync for ActivityType
impl Unpin for ActivityType
impl UnwindSafe for ActivityType
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
Mutably borrows from an owned value. Read more
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)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)