[][src]Struct a2::response::Response

pub struct Response {
    pub error: Option<ErrorBody>,
    pub apns_id: Option<String>,
    pub code: u16,
}

The response data from APNs.

Fields

error: Option<ErrorBody>

If the notification was not successful, has the body content from APNs.

apns_id: Option<String>

Is the value defined in the NotificationOptions or a new Uuid generated by APNs.

code: u16

The HTTP response code.

  • 200 Success
  • 400 Bad request
  • 403 There was an error with the certificate or with the provider authentication token
  • 405 The request used a bad :method value. Only POST requests are supported.
  • 410 The device token is no longer active for the topic.
  • 413 The notification payload was too large.
  • 429 The server received too many requests for the same device token.
  • 500 Internal server error.
  • 503 The server is shutting down and unavailable.

Trait Implementations

impl Debug for Response[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for T[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.

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

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

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