pub enum WsError<E> {
Protocol(ProtocolError),
Stream(E),
}
Variants§
Protocol(ProtocolError)
Stream(E)
Trait Implementations§
Source§impl<E> Error for WsError<E>
impl<E> Error for WsError<E>
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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()
Source§impl<E> From<ProtocolError> for WsError<E>
impl<E> From<ProtocolError> for WsError<E>
Source§fn from(e: ProtocolError) -> Self
fn from(e: ProtocolError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<E> Freeze for WsError<E>where
E: Freeze,
impl<E> RefUnwindSafe for WsError<E>where
E: RefUnwindSafe,
impl<E> Send for WsError<E>where
E: Send,
impl<E> Sync for WsError<E>where
E: Sync,
impl<E> Unpin for WsError<E>where
E: Unpin,
impl<E> UnwindSafe for WsError<E>where
E: UnwindSafe,
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