netstack 0.3.0

A batteries included networking crate for games.
Documentation
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,
}