mint-core 1.3.1

Core library for building hex files from data and layout definitions.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use thiserror::Error;

#[derive(Debug, Error)]
pub enum OutputError {
    #[error("File error: {0}.")]
    FileError(String),

    #[error("Hex output error: {0}.")]
    HexOutputError(String),

    #[error("Block memory overlap detected: {0}")]
    BlockOverlapError(String),
}