rust-openttd-admin 0.2.0

A library to receive and parse OpenTTD admin packets.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! This module handles the serializing and deserializing of OpenTTD packets.
//!
//! It is designed to make most things go right by default, but it is far from
//! general purpose.

mod de;
mod error;
mod ser;

pub use de::{from_bytes, PacketRead};
pub use error::{Error, Result};
pub use ser::{PacketWrite, WritablePacket};