korvin-core 0.2.1

The core for korvin frontend framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod error {
    use thiserror::Error;

    use crate::data::Value;

    #[derive(Debug, Error)]
    pub enum AttributeError {
        #[error("Invalid attribute name: {name}")]
        InvalidAttributeName { name: Value },
    }

    pub type AttributeResult<T> = std::result::Result<T, AttributeError>;
}