pub enum State {
Connecting,
Open,
Closing,
Closed,
}
Available on crate feature
websocket
only.Expand description
The state of the websocket.
See WebSocket.readyState
on MDN
to learn more.
Variants
Connecting
The connection has not yet been established.
Open
The WebSocket connection is established and communication is possible.
Closing
The connection is going through the closing handshake, or the close() method has been invoked.
Closed
The connection has been closed or could not be opened.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for State
impl Send for State
impl Sync for State
impl Unpin for State
impl UnwindSafe for State
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more