shex_ast 0.3.8

RDF data shapes implementation in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
use rudof_iri::IriS;
use serde::{Deserialize, Serialize};

use super::object_value::ObjectValue;

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