pub enum InboundError {
RedundantResponse(Response),
ExpiredResponse(Response),
ResponseHashZero(Response),
InboundDecodeError(DecodeError, Bytes),
DisabledInbound(RecvMsg),
}Variants§
RedundantResponse(Response)
ExpiredResponse(Response)
ResponseHashZero(Response)
InboundDecodeError(DecodeError, Bytes)
DisabledInbound(RecvMsg)
Trait Implementations§
Source§impl Debug for InboundError
impl Debug for InboundError
Source§impl Display for InboundError
impl Display for InboundError
Source§impl Error for InboundError
impl Error for InboundError
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 !Freeze for InboundError
impl !RefUnwindSafe for InboundError
impl Send for InboundError
impl Sync for InboundError
impl Unpin for InboundError
impl !UnwindSafe for InboundError
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