pub enum WebSocketErrorKind {
Connection,
Protocol,
Timeout,
InvalidUrl,
Io,
Tls,
}
Variants§
Trait Implementations§
Source§impl Clone for WebSocketErrorKind
impl Clone for WebSocketErrorKind
Source§fn clone(&self) -> WebSocketErrorKind
fn clone(&self) -> WebSocketErrorKind
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for WebSocketErrorKind
impl Debug for WebSocketErrorKind
Source§impl PartialEq for WebSocketErrorKind
impl PartialEq for WebSocketErrorKind
impl StructuralPartialEq for WebSocketErrorKind
Auto Trait Implementations§
impl Freeze for WebSocketErrorKind
impl RefUnwindSafe for WebSocketErrorKind
impl Send for WebSocketErrorKind
impl Sync for WebSocketErrorKind
impl Unpin for WebSocketErrorKind
impl UnwindSafe for WebSocketErrorKind
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