Enum tokio_retry::Error
[−]
[src]
pub enum Error<E> {
OperationError(E),
TimerError(Error),
}Represents the errors possible during the execution of the RetryFuture.
Variants
OperationError(E)TimerError(Error)Trait Implementations
impl<E: Debug> Debug for Error<E>[src]
impl<E: PartialEq> PartialEq for Error<E>[src]
fn eq(&self, other: &Error<E>) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0
This method tests for !=.
impl<E: Display> Display for Error<E>[src]
fn fmt(&self, formatter: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter. Read more