shex_ast 0.1.31

RDF data shapes implementation in Rust
Documentation
1
2
3
4
5
6
7
8
9
use iri_s::IriS;

use super::object_value::ObjectValue;

#[derive(Debug, PartialEq, Eq, Clone)]
pub struct Annotation {
    predicate: IriS,
    object: ObjectValue,
}