Enum libp2p_swarm::handler::StreamUpgradeError
source · pub enum StreamUpgradeError<TUpgrErr> {
Timeout,
Apply(TUpgrErr),
NegotiationFailed,
Io(Error),
}
Expand description
Error that can happen on an outbound substream opening attempt.
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()
Auto Trait Implementations§
impl<TUpgrErr> !RefUnwindSafe for StreamUpgradeError<TUpgrErr>
impl<TUpgrErr> Send for StreamUpgradeError<TUpgrErr>where
TUpgrErr: Send,
impl<TUpgrErr> Sync for StreamUpgradeError<TUpgrErr>where
TUpgrErr: Sync,
impl<TUpgrErr> Unpin for StreamUpgradeError<TUpgrErr>where
TUpgrErr: Unpin,
impl<TUpgrErr> !UnwindSafe for StreamUpgradeError<TUpgrErr>
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