pub enum OutboundProbeError {
NoServer,
NoAddresses,
OutboundRequest(OutboundFailure),
Response(ResponseError),
}
Expand description
Outbound probe failed or was aborted.
Variants§
NoServer
Probe was aborted because no server is known, or all servers
are throttled through Config::throttle_server_period
.
NoAddresses
Probe was aborted because the local peer has no listening or external addresses.
OutboundRequest(OutboundFailure)
Sending the dial-back request or receiving a response failed.
Response(ResponseError)
The server refused or failed to dial us.
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for OutboundProbeError
impl Send for OutboundProbeError
impl Sync for OutboundProbeError
impl Unpin for OutboundProbeError
impl !UnwindSafe for OutboundProbeError
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