dctap 0.2.18

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

#[derive(Error, Debug)]

pub enum TapReaderWarning {
    #[error("Empty property with fields found at line: {line}")]
    EmptyProperty { line: u64 },

    #[error("Extends label found: {label} without extends ID at line {line}")]
    ExtendsLabelWithoutExtendsId { label: String, line: u64 },
}