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§
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