Good
All checks were successful
Rust Checks / checks (push) Successful in 3m47s
Rust Checks / checks (pull_request) Successful in 1m44s

This commit is contained in:
Tipragot 2024-02-12 13:08:34 +01:00
parent 3847bbd3eb
commit 9e6c030697

View file

@ -15,7 +15,7 @@ use tungstenite::{ClientHandshake, HandshakeError, Message, WebSocket};
/// The state of a [Connection].
#[derive(Debug)]
pub enum ConnectionState {
enum ConnectionState {
/// The [Connection] is not connected.
Disconnected,
@ -65,7 +65,7 @@ pub struct Connection {
receive_sender: Sender<(u32, Vec<u8>)>,
/// The state of the connection.
pub state: ConnectionState,
state: ConnectionState,
}
impl Connection {