[][src]Struct a2::SilentNotificationBuilder

pub struct SilentNotificationBuilder { /* fields omitted */ }

A builder to create an APNs silent notification payload which can be used to send custom data to the user's phone if the user hasn't been running the app for a while. The custom data needs to be implementing Serialize from Serde.

Example

let mut test_data = HashMap::new();
test_data.insert("a", "value");

let mut payload = SilentNotificationBuilder::new()
   .build("device_id", Default::default());

payload.add_custom_data("custom", &test_data);

assert_eq!(
    "{\"aps\":{\"content-available\":1},\"custom\":{\"a\":\"value\"}}",
    &payload.to_json_string().unwrap()
);

Methods

impl SilentNotificationBuilder[src]

pub fn new() -> SilentNotificationBuilder[src]

Creates a new builder.

let payload = SilentNotificationBuilder::new()
    .build("token", Default::default());

assert_eq!(
    "{\"aps\":{\"content-available\":1}}",
    &payload.to_json_string().unwrap()
);

Trait Implementations

impl<'a> NotificationBuilder<'a> for SilentNotificationBuilder[src]

Auto Trait Implementations

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 = Infallible

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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

impl<T> Erased for T