Enum libp2p_ping::Failure
source · pub enum Failure {
Timeout,
Unsupported,
Other {
error: Box<dyn Error + Send + 'static>,
},
}
Expand description
An outbound ping failure.
Variants§
Timeout
The ping timed out, i.e. no response was received within the configured ping timeout.
Unsupported
The peer does not support the ping protocol.
Other
The ping failed for reasons other than a timeout.
Trait Implementations§
source§impl Error for Failure
impl Error for Failure
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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 !RefUnwindSafe for Failure
impl Send for Failure
impl !Sync for Failure
impl Unpin for Failure
impl !UnwindSafe for Failure
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