pub enum TransportUpgradeError<T, U> {
Transport(T),
Upgrade(UpgradeError<U>),
}
Expand description
Errors produced by a transport upgrade.
Variants
Transport(T)
Error in the transport.
Upgrade(UpgradeError<U>)
Error while upgrading to a protocol.
Trait Implementations
sourceimpl<T: Debug, U: Debug> Debug for TransportUpgradeError<T, U>
impl<T: Debug, U: Debug> Debug for TransportUpgradeError<T, U>
sourceimpl<T, U> Display for TransportUpgradeError<T, U> where
T: Display,
U: Display,
impl<T, U> Display for TransportUpgradeError<T, U> where
T: Display,
U: Display,
sourceimpl<T, U> Error for TransportUpgradeError<T, U> where
T: Error + 'static,
U: Error + 'static,
impl<T, U> Error for TransportUpgradeError<T, U> where
T: Error + 'static,
U: Error + 'static,
sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
🔬 This is a nightly-only experimental API. (
backtrace
)Returns a stack backtrace, if available, of where this error occurred. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎 Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations
impl<T, U> RefUnwindSafe for TransportUpgradeError<T, U> where
T: RefUnwindSafe,
U: RefUnwindSafe,
impl<T, U> Send for TransportUpgradeError<T, U> where
T: Send,
U: Send,
impl<T, U> Sync for TransportUpgradeError<T, U> where
T: Sync,
U: Sync,
impl<T, U> Unpin for TransportUpgradeError<T, U> where
T: Unpin,
U: Unpin,
impl<T, U> UnwindSafe for TransportUpgradeError<T, U> where
T: UnwindSafe,
U: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more