metaverse_environment 0.3.0

metaverse environment data handler
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use bitreader::BitReaderError;

/// The PatchError function. Stores errors thrown by the Patch handler
#[derive(Debug)]
pub struct PatchError {
    /// The message of the error
    pub message: String,
}

impl From<BitReaderError> for PatchError {
    fn from(err: BitReaderError) -> Self {
        PatchError {
            message: format!("BitReaderError: {:?}", err),
        }
    }
}