[][src]Enum sns_push_notifications::Push

pub enum Push {
    Alert {
        text: String,
        badge: Option<i32>,
    },
    Silent {
        badge: Option<i32>,
    },
}

A push notification to be sent.

Variants

Alert

A normal alert style push.

Fields of Alert

text: String

The text that'll be shown on screen.

badge: Option<i32>

The badge count to set. Requires platform support.

Silent

A silent push.

Useful for waking up an app and performing work in the background.

Fields of Silent

badge: Option<i32>

The badge count to set. Requires platform support.

Trait Implementations

impl Debug for Push[src]

Auto Trait Implementations

impl Send for Push

impl Sync for Push

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> Same for T

type Output = T

Should always be Self

impl<T> Erased for T