1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
#[derive(Debug, Fail)]
pub enum ServerError {
    #[fail(display = "Maximum number of connections reached")]
    MaximumConnectionsReached,

    #[fail(display = "Connection not ready, please wait for the connected event before sending packets")]
    ConnectionNotReady,

    #[fail(display = "Connection not found")]
    ConnectionNotFound,
}