[][src]Enum a2::response::ErrorReason

pub enum ErrorReason {
    BadCollapseId,
    BadDeviceToken,
    BadExpirationDate,
    BadMessageId,
    BadPriority,
    BadTopic,
    DeviceTokenNotForTopic,
    DuplicateHeaders,
    IdleTimeout,
    MissingDeviceToken,
    MissingTopic,
    PayloadEmpty,
    TopicDisallowed,
    BadCertificate,
    BadCertificateEnvironment,
    ExpiredProviderToken,
    Forbidden,
    InvalidProviderToken,
    MissingProviderToken,
    BadPath,
    MethodNotAllowed,
    Unregistered,
    PayloadTooLarge,
    TooManyProviderTokenUpdates,
    TooManyRequests,
    InternalServerError,
    ServiceUnavailable,
    Shutdown,
}

A description what went wrong with the push notification.

Variants

BadCollapseId

The collapse identifier exceeds the maximum allowed size.

BadDeviceToken

The specified device token was bad. Verify that the request contains a valid token and that the token matches the environment.

BadExpirationDate

The apns_expiration in NotificationOptions is bad.

BadMessageId

The apns_id in NotificationOptions is bad.

BadPriority

The apns_priority in NotificationOptions is bad.

BadTopic

The apns_topic in NotificationOptions is bad.

DeviceTokenNotForTopic

The device token does not match the specified topic.

DuplicateHeaders

One or more headers were repeated.

IdleTimeout

Idle time out.

MissingDeviceToken

The device token is not specified in the payload.

MissingTopic

The apns_topic of the NotificationOptions was not specified and was required. The apns_topic header is mandatory when the client is connected using the CertificateConnector and the included PKCS12 file includes multiple topics, or when using the TokenConnector.

PayloadEmpty

The message payload was empty.

TopicDisallowed

Pushing to this topic is not allowed.

BadCertificate

The certificate was bad.

BadCertificateEnvironment

The client certificate was for the wrong environment.

ExpiredProviderToken

The provider token is stale and a new token should be generated.

Forbidden

The specified action is not allowed.

InvalidProviderToken

The provider token is not valid or the token signature could not be verified.

MissingProviderToken

No provider certificate was used to connect to APNs and Authorization header was missing or no provider token was specified.

BadPath

The request path value is bad.

MethodNotAllowed

The request method was not POST.

Unregistered

The device token is inactive for the specified topic. You should stop sending notifications to this token.

PayloadTooLarge

The message payload was too large (4096 bytes)

TooManyProviderTokenUpdates

The provider token is being updated too often.

TooManyRequests

Too many requests were made consecutively to the same device token.

InternalServerError

An internal server error occurred.

ServiceUnavailable

The service is unavailable.

Shutdown

The server is shutting down.

Trait Implementations

impl PartialEq<ErrorReason> for ErrorReason[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl Display for ErrorReason[src]

impl Debug for ErrorReason[src]

impl<'de> Deserialize<'de> for ErrorReason[src]

Auto Trait Implementations

impl Send for ErrorReason

impl Sync for ErrorReason

Blanket Implementations

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

impl<T> ToString for T where
    T: Display + ?Sized
[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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T