shex_ast 0.2.18

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

use super::object_value::ObjectValue;

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