amalgam-core 0.6.4

Core IR and type system for amalgam configuration generator
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use thiserror::Error;

#[derive(Error, Debug)]
pub enum CoreError {
    #[error("Type conversion error: {0}")]
    TypeConversion(String),

    #[error("Invalid type definition: {0}")]
    InvalidType(String),

    #[error("Unsupported feature: {0}")]
    UnsupportedFeature(String),

    #[error("Internal error: {0}")]
    Internal(String),
}