mclib 0.0.1

Utils and helpers for Minecraft protocol
Documentation
1
2
3
4
5
6
7
use std::fmt::Debug;
use std::io::Read;

pub trait MCType: Clone + Debug {
    fn pack(&self) -> Vec<u8>;
    fn unpack(src: &mut dyn Read) -> Self;
}