Struct a2::NotificationOptions

source ·
pub struct NotificationOptions<'a> {
    pub apns_id: Option<&'a str>,
    pub apns_expiration: Option<u64>,
    pub apns_priority: Priority,
    pub apns_topic: Option<&'a str>,
    pub apns_collapse_id: Option<CollapseId<'a>>,
}
Expand description

Headers to specify options to the notification.

Fields§

§apns_id: Option<&'a str>

A canonical UUID that identifies the notification. If there is an error sending the notification, APNs uses this value to identify the notification to your server.

§apns_expiration: Option<u64>

A UNIX epoch date expressed in seconds (UTC). This header identifies the date when the notification is no longer valid and can be discarded.

If this value is nonzero, APNs stores the notification and tries to deliver it at least once, repeating the attempt as needed if it is unable to deliver the notification the first time. If the value is 0, APNs treats the notification as if it expires immediately and does not store the notification or attempt to redeliver it.

§apns_priority: Priority

The priority of the notification.

§apns_topic: Option<&'a str>

The topic of the remote notification, which is typically the bundle ID for your app. The certificate you create in your developer account must include the capability for this topic.

If your certificate includes multiple topics, you must specify a value for this header.

If you omit this request header and your APNs certificate does not specify multiple topics, the APNs server uses the certificate’s Subject as the default topic.

If you are using a provider token instead of a certificate, you must specify a value for this request header. The topic you provide should be provisioned for the your team named in your developer account.

§apns_collapse_id: Option<CollapseId<'a>>

Multiple notifications with the same collapse identifier are displayed to the user as a single notification. The value of this key must not exceed 64 bytes.

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.