pub enum InvalidRetryAfter {
InvalidDelay(ParseFloatError),
}Expand description
Error that occurs when parsing a RetryAfter from a string fails.
Variants§
InvalidDelay(ParseFloatError)
The supplied delay in seconds was not valid.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for InvalidRetryAfter
impl RefUnwindSafe for InvalidRetryAfter
impl Send for InvalidRetryAfter
impl Sync for InvalidRetryAfter
impl Unpin for InvalidRetryAfter
impl UnwindSafe for InvalidRetryAfter
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more