shex_ast/compiled/
annotation.rs

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,
}