pub enum ErrorReason {
Show 14 variants MissingRegistration, InvalidRegistration, NotRegistered, InvalidPackageName, MismatchSenderId, InvalidParameters, MessageTooBig, InvalidDataKey, InvalidTtl, Unavailable, InternalServerError, DeviceMessageRateExceeded, TopicsMessageRateExceeded, InvalidApnsCredential,
}
Expand description

A description of what went wrong with the push notification. Referred from Firebase documentation

Variants

MissingRegistration

Check that the request contains a registration token (in the to or registration_ids field).

InvalidRegistration

Check the format of the registration token you pass to the server. Make sure it matches the registration token the client app receives from registering with Firebase Notifications. Do not truncate or add additional characters.

NotRegistered

An existing registration token may cease to be valid in a number of scenarios, including:

  • If the client app unregisters with FCM.
  • If the client app is automatically unregistered, which can happen if the user uninstalls the application. For example, on iOS, if the APNS Feedback Service reported the APNS token as invalid.
  • If the registration token expires (for example, Google might decide to refresh registration tokens, or the APNS token has expired for iOS devices).
  • If the client app is updated but the new version is not configured to receive messages.

For all these cases, remove this registration token from the app server and stop using it to send messages.

InvalidPackageName

Make sure the message was addressed to a registration token whose package name matches the value passed in the request.

MismatchSenderId

A registration token is tied to a certain group of senders. When a client app registers for FCM, it must specify which senders are allowed to send messages. You should use one of those sender IDs when sending messages to the client app. If you switch to a different sender, the existing registration tokens won’t work.

InvalidParameters

Check that the provided parameters have the right name and type.

MessageTooBig

Check that the total size of the payload data included in a message does not exceed FCM limits: 4096 bytes for most messages, or 2048 bytes in the case of messages to topics. This includes both the keys and the values.

InvalidDataKey

Check that the custom payload data does not contain a key (such as from, or gcm, or any value prefixed by google) that is used internally by FCM. Note that some words (such as collapse_key) are also used by FCM but are allowed in the payload, in which case the payload value will be overridden by the FCM value.

InvalidTtl

Check that the value used in time_to_live is an integer representing a duration in seconds between 0 and 2,419,200 (4 weeks).

Unavailable

In internal use only. Check FcmError::ServerError.

InternalServerError

In internal use only. Check FcmError::ServerError.

DeviceMessageRateExceeded

The rate of messages to a particular device is too high. If an iOS app sends messages at a rate exceeding APNs limits, it may receive this error message

Reduce the number of messages sent to this device and use exponential backoff to retry sending.

TopicsMessageRateExceeded

The rate of messages to subscribers to a particular topic is too high. Reduce the number of messages sent for this topic and use exponential backoff to retry sending.

InvalidApnsCredential

A message targeted to an iOS device could not be sent because the required APNs authentication key was not uploaded or has expired. Check the validity of your development and production credentials.

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
Deserialize this value from the given Serde deserializer. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. 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.