pub enum SentNotificationDetails {
NotificationDetailEmpty(Value),
NotificationDetailBoop(NotificationDetailBoop),
NotificationDetailInvite(NotificationDetailInvite),
NotificationDetailInviteResponse(NotificationDetailInviteResponse),
NotificationDetailRequestInvite(NotificationDetailRequestInvite),
NotificationDetailRequestInviteResponse(NotificationDetailRequestInviteResponse),
NotificationDetailVoteToKick(NotificationDetailVoteToKick),
}Variants§
NotificationDetailEmpty(Value)
NotificationDetailBoop(NotificationDetailBoop)
NotificationDetailInvite(NotificationDetailInvite)
NotificationDetailInviteResponse(NotificationDetailInviteResponse)
NotificationDetailRequestInvite(NotificationDetailRequestInvite)
NotificationDetailRequestInviteResponse(NotificationDetailRequestInviteResponse)
NotificationDetailVoteToKick(NotificationDetailVoteToKick)
Trait Implementations§
Source§impl Clone for SentNotificationDetails
impl Clone for SentNotificationDetails
Source§fn clone(&self) -> SentNotificationDetails
fn clone(&self) -> SentNotificationDetails
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 SentNotificationDetails
impl Debug for SentNotificationDetails
Source§impl Default for SentNotificationDetails
impl Default for SentNotificationDetails
Source§impl<'de> Deserialize<'de> for SentNotificationDetails
impl<'de> Deserialize<'de> for SentNotificationDetails
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 PartialEq for SentNotificationDetails
impl PartialEq for SentNotificationDetails
Source§impl Serialize for SentNotificationDetails
impl Serialize for SentNotificationDetails
impl StructuralPartialEq for SentNotificationDetails
Auto Trait Implementations§
impl Freeze for SentNotificationDetails
impl RefUnwindSafe for SentNotificationDetails
impl Send for SentNotificationDetails
impl Sync for SentNotificationDetails
impl Unpin for SentNotificationDetails
impl UnwindSafe for SentNotificationDetails
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