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.