[][src]Enum fcm::RetryAfter

pub enum RetryAfter {
    Delay(Duration),
    DateTime(DateTime<FixedOffset>),
}

Variants

Delay(Duration)

Amount of time to wait until retrying the message is allowed.

DateTime(DateTime<FixedOffset>)

A point in time until retrying the message is allowed.

Methods

impl RetryAfter[src]

pub fn from_str(header_value: &str) -> Option<RetryAfter>[src]

Trait Implementations

impl Debug for RetryAfter[src]

impl PartialEq<RetryAfter> for RetryAfter[src]

impl StructuralPartialEq for RetryAfter[src]

Auto Trait Implementations

impl RefUnwindSafe for RetryAfter

impl Send for RetryAfter

impl Sync for RetryAfter

impl Unpin for RetryAfter

impl UnwindSafe for RetryAfter

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<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.