pub struct NotificationWithMetaAllOf {
    pub remaining: Option<i32>,
    pub successful: Option<i32>,
    pub failed: Option<i32>,
    pub errored: Option<i32>,
    pub converted: Option<i32>,
    pub queued_at: Option<i64>,
    pub send_after: Option<i64>,
    pub completed_at: Option<i64>,
    pub platform_delivery_stats: Option<Box<PlatformDeliveryData>>,
    pub received: Option<i32>,
    pub throttle_rate_per_minute: Option<i32>,
}

Fields§

§remaining: Option<i32>

Number of notifications that have not been sent out yet. This can mean either our system is still processing the notification or you have delayed options set.

§successful: Option<i32>

Number of notifications that were successfully delivered.

§failed: Option<i32>

Number of notifications that could not be delivered due to those devices being unsubscribed.

§errored: Option<i32>

Number of notifications that could not be delivered due to an error. You can find more information by viewing the notification in the dashboard.

§converted: Option<i32>

Number of users who have clicked / tapped on your notification.

§queued_at: Option<i64>

Unix timestamp indicating when the notification was created.

§send_after: Option<i64>

Unix timestamp indicating when notification delivery should begin.

§completed_at: Option<i64>

Unix timestamp indicating when notification delivery completed. The delivery duration from start to finish can be calculated with completed_at - send_after.

§platform_delivery_stats: Option<Box<PlatformDeliveryData>>§received: Option<i32>

Confirmed Deliveries number of devices that received the push notification. Paid Feature Only. Free accounts will see 0.

§throttle_rate_per_minute: Option<i32>

number of push notifications sent per minute. Paid Feature Only. If throttling is not enabled for the app or the notification, and for free accounts, null is returned. Refer to Throttling for more details.

Implementations§

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
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 ==.
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Serialize this value into the given Serde serializer. 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.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

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.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more