pub enum WsFailReason {
ClosedByServer,
ConnectionFailed,
ServerNotAvailable,
}
Expand description
The reason of failing of a WebSocket connection.
Variants§
ClosedByServer
Connection was closed by a server.
ConnectionFailed
Connection failed.
ServerNotAvailable
Server is not available.
Trait Implementations§
Source§impl Clone for WsFailReason
impl Clone for WsFailReason
Source§fn clone(&self) -> WsFailReason
fn clone(&self) -> WsFailReason
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 WsFailReason
impl Debug for WsFailReason
Source§impl Display for WsFailReason
impl Display for WsFailReason
Source§impl Error for WsFailReason
impl Error for WsFailReason
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()
Auto Trait Implementations§
impl Freeze for WsFailReason
impl RefUnwindSafe for WsFailReason
impl Send for WsFailReason
impl Sync for WsFailReason
impl Unpin for WsFailReason
impl UnwindSafe for WsFailReason
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