mineome 0.2.0

Mineome is a Rust library focusing on providing high quality type definitions for the data-driven aspects of Minecraft Java Edition.
Documentation
1
2
3
4
5
pub trait Validate {
    type Error;

    fn validate(&self) -> Vec<Self::Error>;
}