rmesh 0.4.0

A parser for the rmesh extension
Documentation
1
2
3
4
5
6
7
8
9
10
11
use std::string::FromUtf8Error;
use thiserror::Error;

#[non_exhaustive]
#[derive(Error, Debug)]
pub enum RMeshError {
    #[error(transparent)]
    NonUTF8(#[from] FromUtf8Error),
    #[error("Error while trying to write data: {0}")]
    BinRwError(#[from] binrw::Error),
}