[][src]Enum winrt_notification::Sound

pub enum Sound {
    Default,
    IM,
    Mail,
    Reminder,
    SMS,
    Single(LoopableSound),
    Loop(LoopableSound),
}

Variants

Default
IM
Mail
Reminder
SMS
Single(LoopableSound)

Play the loopable sound only once

Loop(LoopableSound)

Loop the loopable sound for the entire duration of the toast

Trait Implementations

impl Debug for Sound[src]

impl FromStr for Sound[src]

type Err = ParseError

The associated error which can be returned from parsing.

Auto Trait Implementations

impl RefUnwindSafe for Sound[src]

impl Send for Sound[src]

impl Sync for Sound[src]

impl Unpin for Sound[src]

impl UnwindSafe for Sound[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.