pub enum Component {
Show 27 variants
Class(RDFNode),
Datatype(IriRef),
NodeKind(NodeKind),
MinCount(isize),
MaxCount(isize),
MinExclusive(Literal),
MaxExclusive(Literal),
MinInclusive(Literal),
MaxInclusive(Literal),
MinLength(isize),
MaxLength(isize),
Pattern {
pattern: String,
flags: Option<String>,
},
UniqueLang(bool),
LanguageIn {
langs: Vec<Lang>,
},
Equals(IriRef),
Disjoint(IriRef),
LessThan(IriRef),
LessThanOrEquals(IriRef),
Or {
shapes: Vec<RDFNode>,
},
And {
shapes: Vec<RDFNode>,
},
Not {
shape: RDFNode,
},
Xone {
shapes: Vec<RDFNode>,
},
Closed {
is_closed: bool,
ignored_properties: Vec<IriRef>,
},
Node {
shape: RDFNode,
},
HasValue {
value: Value,
},
In {
values: Vec<Value>,
},
QualifiedValueShape {
shape: RDFNode,
qualified_min_count: Option<isize>,
qualified_max_count: Option<isize>,
qualified_value_shapes_disjoint: Option<bool>,
},
}
Variants§
Class(RDFNode)
Datatype(IriRef)
NodeKind(NodeKind)
MinCount(isize)
MaxCount(isize)
MinExclusive(Literal)
MaxExclusive(Literal)
MinInclusive(Literal)
MaxInclusive(Literal)
MinLength(isize)
MaxLength(isize)
Pattern
UniqueLang(bool)
LanguageIn
Equals(IriRef)
Disjoint(IriRef)
LessThan(IriRef)
LessThanOrEquals(IriRef)
Or
And
Not
Xone
Closed
Node
HasValue
In
QualifiedValueShape
Implementations§
Trait Implementations§
impl Eq for Component
impl StructuralPartialEq for Component
Auto Trait Implementations§
impl Freeze for Component
impl RefUnwindSafe for Component
impl Send for Component
impl Sync for Component
impl Unpin for Component
impl UnwindSafe for Component
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more