shacl_ast 0.1.32

RDF data shapes implementation in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
use thiserror::Error;

#[derive(Debug, Error)]
pub enum CompiledShaclError {
    #[error("Conversion from IriRef failed")]
    IriRefConversion,
    #[error("Could not found the shape that it was been searched")]
    ShapeNotFound,
    #[error("Could not convert to Literal")]
    LiteralConversion,
}