pub enum RetryableClientRespondEndpointUntilDoneError<RE, EPRRE, EPPRE>{
RespondFailed(RE),
EndpointRenderRequestFailed(EPRRE),
EndpointParseResponseFailed(EPPRE),
ReachedMaxRetries,
}
Variants§
RespondFailed(RE)
EndpointRenderRequestFailed(EPRRE)
EndpointParseResponseFailed(EPPRE)
ReachedMaxRetries
Trait Implementations§
Source§impl<RE, EPRRE, EPPRE> Debug for RetryableClientRespondEndpointUntilDoneError<RE, EPRRE, EPPRE>
impl<RE, EPRRE, EPPRE> Debug for RetryableClientRespondEndpointUntilDoneError<RE, EPRRE, EPPRE>
Source§impl<RE, EPRRE, EPPRE> Display for RetryableClientRespondEndpointUntilDoneError<RE, EPRRE, EPPRE>
impl<RE, EPRRE, EPPRE> Display for RetryableClientRespondEndpointUntilDoneError<RE, EPRRE, EPPRE>
Source§impl<RE, EPRRE, EPPRE> Error for RetryableClientRespondEndpointUntilDoneError<RE, EPRRE, EPPRE>
impl<RE, EPRRE, EPPRE> Error for RetryableClientRespondEndpointUntilDoneError<RE, EPRRE, EPPRE>
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl<RE, EPRRE, EPPRE> Freeze for RetryableClientRespondEndpointUntilDoneError<RE, EPRRE, EPPRE>
impl<RE, EPRRE, EPPRE> RefUnwindSafe for RetryableClientRespondEndpointUntilDoneError<RE, EPRRE, EPPRE>
impl<RE, EPRRE, EPPRE> Send for RetryableClientRespondEndpointUntilDoneError<RE, EPRRE, EPPRE>
impl<RE, EPRRE, EPPRE> Sync for RetryableClientRespondEndpointUntilDoneError<RE, EPRRE, EPPRE>
impl<RE, EPRRE, EPPRE> Unpin for RetryableClientRespondEndpointUntilDoneError<RE, EPRRE, EPPRE>
impl<RE, EPRRE, EPPRE> UnwindSafe for RetryableClientRespondEndpointUntilDoneError<RE, EPRRE, EPPRE>
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