Type Alias libp2p_swarm::handler::ConnectionHandlerUpgrErr
source · pub type ConnectionHandlerUpgrErr<TUpgrErr> = StreamUpgradeError<TUpgrErr>;
👎Deprecated: Renamed to
StreamUpgradeError
Aliased Type§
enum ConnectionHandlerUpgrErr<TUpgrErr> {
Timeout,
Apply(TUpgrErr),
NegotiationFailed,
Io(Error),
}
Variants§
Timeout
The opening attempt timed out before the negotiation was fully completed.
Apply(TUpgrErr)
The upgrade produced an error.
NegotiationFailed
No protocol could be agreed upon.
Io(Error)
An IO or otherwise unrecoverable error happened.
Implementations
source§impl<TUpgrErr> StreamUpgradeError<TUpgrErr>
impl<TUpgrErr> StreamUpgradeError<TUpgrErr>
sourcepub fn map_upgrade_err<F, E>(self, f: F) -> StreamUpgradeError<E>where
F: FnOnce(TUpgrErr) -> E,
pub fn map_upgrade_err<F, E>(self, f: F) -> StreamUpgradeError<E>where
F: FnOnce(TUpgrErr) -> E,
Map the inner StreamUpgradeError
type.
Trait Implementations
source§impl<TUpgrErr: Debug> Debug for StreamUpgradeError<TUpgrErr>
impl<TUpgrErr: Debug> Debug for StreamUpgradeError<TUpgrErr>
source§impl<TUpgrErr> Display for StreamUpgradeError<TUpgrErr>where
TUpgrErr: Error + 'static,
impl<TUpgrErr> Display for StreamUpgradeError<TUpgrErr>where
TUpgrErr: Error + 'static,
source§impl<TUpgrErr> Error for StreamUpgradeError<TUpgrErr>where
TUpgrErr: Error + 'static,
impl<TUpgrErr> Error for StreamUpgradeError<TUpgrErr>where
TUpgrErr: Error + 'static,
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()