pub enum ShapeSelector {
Label(ShapeExprLabel),
Start,
}
Expand description
A ShapeSelector following ShapeMap spec can be used to select shape expressions to validate
Variants§
Label(ShapeExprLabel)
Start
Implementations§
Source§impl ShapeSelector
impl ShapeSelector
pub fn iri_unchecked(str: &str) -> ShapeSelector
pub fn iri_ref(iri: IriRef) -> ShapeSelector
pub fn start() -> ShapeSelector
pub fn prefixed(alias: &str, local: &str) -> Self
pub fn iter_shape(&self) -> impl Iterator<Item = &ShapeExprLabel>
Trait Implementations§
Source§impl Clone for ShapeSelector
impl Clone for ShapeSelector
Source§fn clone(&self) -> ShapeSelector
fn clone(&self) -> ShapeSelector
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ShapeSelector
impl Debug for ShapeSelector
Source§impl PartialEq for ShapeSelector
impl PartialEq for ShapeSelector
Source§impl Serialize for ShapeSelector
impl Serialize for ShapeSelector
impl StructuralPartialEq for ShapeSelector
Auto Trait Implementations§
impl Freeze for ShapeSelector
impl RefUnwindSafe for ShapeSelector
impl Send for ShapeSelector
impl Sync for ShapeSelector
impl Unpin for ShapeSelector
impl UnwindSafe for ShapeSelector
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<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