dwn-core 0.4.0

Core DWN types.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use thiserror::Error;

mod data;
mod record;

pub use data::*;
pub use record::*;

#[derive(Error, Debug)]
pub enum StoreError {
    #[error("backend error: {0}")]
    BackendError(String),
    #[error("invalid input: {0}")]
    InvalidInput(String),
}