shapes_converter 0.2.2

RDF data shapes implementation in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use std::{io, result};

use thiserror::Error;

pub type Result<T> = result::Result<T, ConverterError>;

#[derive(Error, Debug)]
pub enum ConverterError {
    #[error("Error reading config file from path {path}: {error}")]
    ConverterConfigFromPathError { path: String, error: io::Error },

    #[error("Error reading config file from path {path}: {error}")]
    ConverterConfigFromTomlError { path: String, error: toml::de::Error },
}