pub enum NotificationSound {
NotificationSound(NotificationSound),
}Variants§
NotificationSound(NotificationSound)
Describes a notification sound in MP3 format
Trait Implementations§
Source§impl Clone for NotificationSound
impl Clone for NotificationSound
Source§fn clone(&self) -> NotificationSound
fn clone(&self) -> NotificationSound
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 NotificationSound
impl Debug for NotificationSound
Source§impl<'de> Deserialize<'de> for NotificationSound
impl<'de> Deserialize<'de> for NotificationSound
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 NotificationSound
impl PartialEq for NotificationSound
Source§impl Serialize for NotificationSound
impl Serialize for NotificationSound
impl StructuralPartialEq for NotificationSound
Auto Trait Implementations§
impl Freeze for NotificationSound
impl RefUnwindSafe for NotificationSound
impl Send for NotificationSound
impl Sync for NotificationSound
impl Unpin for NotificationSound
impl UnwindSafe for NotificationSound
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