pub enum NotificationType {
Follow,
FollowRequestAccepted,
ReceiveFollowRequest,
Mention,
Reply,
Renote,
Quote,
Reaction,
PollVote,
GroupInvited,
App,
}Expand description
Auto-generated discriminant enum variants
Variants§
Follow
FollowRequestAccepted
ReceiveFollowRequest
Mention
Reply
Renote
Quote
Reaction
PollVote
GroupInvited
App
Trait Implementations§
Source§impl Clone for NotificationType
impl Clone for NotificationType
Source§fn clone(&self) -> NotificationType
fn clone(&self) -> NotificationType
Returns a duplicate 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 NotificationType
impl Debug for NotificationType
Source§impl<'de> Deserialize<'de> for NotificationType
impl<'de> Deserialize<'de> for NotificationType
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<'_enum> From<&'_enum NotificationBody> for NotificationType
impl<'_enum> From<&'_enum NotificationBody> for NotificationType
Source§fn from(val: &'_enum NotificationBody) -> NotificationType
fn from(val: &'_enum NotificationBody) -> NotificationType
Converts to this type from the input type.
Source§impl From<NotificationBody> for NotificationType
impl From<NotificationBody> for NotificationType
Source§fn from(val: NotificationBody) -> NotificationType
fn from(val: NotificationBody) -> NotificationType
Converts to this type from the input type.
Source§impl FromStr for NotificationType
impl FromStr for NotificationType
Source§impl Hash for NotificationType
impl Hash for NotificationType
Source§impl PartialEq for NotificationType
impl PartialEq for NotificationType
Source§impl Serialize for NotificationType
impl Serialize for NotificationType
impl Copy for NotificationType
impl Eq for NotificationType
impl StructuralPartialEq for NotificationType
Auto Trait Implementations§
impl Freeze for NotificationType
impl RefUnwindSafe for NotificationType
impl Send for NotificationType
impl Sync for NotificationType
impl Unpin for NotificationType
impl UnwindSafe for NotificationType
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