Enum yup_oauth2::Retry[][src]

pub enum Retry {
    Abort,
    After(Duration),
    Skip,
}

A utility type to indicate how operations DeviceFlowHelper operations should be retried

Variants

Signal you don't want to retry

Signals you want to retry after the given duration

Instruct the caller to attempt to keep going, or choose an alternate path. If this is not supported, it will have the same effect as Abort

Auto Trait Implementations

impl Send for Retry

impl Sync for Retry