rudof_lib 0.2.14

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

/// Errors that can occur during node inspection operations.
#[derive(Error, Debug)]
pub enum NodeInspectionError {
    /// The node inspection mode is unsupported by Rudof.
    #[error("Unsupported node inspection mode: '{mode}'. Valid values are: 'outgoing', 'incoming', 'both'")]
    UnsupportedNodeInspectionMode { mode: String },
}