pub enum ClientRespondEndpointError<RE, EPRRE, EPPRE>{
RespondFailed(RE),
EndpointRenderRequestFailed(EPRRE),
EndpointParseResponseFailed(EPPRE),
}
Variants§
Trait Implementations§
Source§impl<RE, EPRRE, EPPRE> Debug for ClientRespondEndpointError<RE, EPRRE, EPPRE>
impl<RE, EPRRE, EPPRE> Debug for ClientRespondEndpointError<RE, EPRRE, EPPRE>
Source§impl<RE, EPRRE, EPPRE> Display for ClientRespondEndpointError<RE, EPRRE, EPPRE>
impl<RE, EPRRE, EPPRE> Display for ClientRespondEndpointError<RE, EPRRE, EPPRE>
Source§impl<RE, EPRRE, EPPRE> Error for ClientRespondEndpointError<RE, EPRRE, EPPRE>
impl<RE, EPRRE, EPPRE> Error for ClientRespondEndpointError<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 ClientRespondEndpointError<RE, EPRRE, EPPRE>
impl<RE, EPRRE, EPPRE> RefUnwindSafe for ClientRespondEndpointError<RE, EPRRE, EPPRE>
impl<RE, EPRRE, EPPRE> Send for ClientRespondEndpointError<RE, EPRRE, EPPRE>
impl<RE, EPRRE, EPPRE> Sync for ClientRespondEndpointError<RE, EPRRE, EPPRE>
impl<RE, EPRRE, EPPRE> Unpin for ClientRespondEndpointError<RE, EPRRE, EPPRE>
impl<RE, EPRRE, EPPRE> UnwindSafe for ClientRespondEndpointError<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