pub enum Verb<'a> {
A,
IRI(IRI<'a>),
}Expand description
A “Verb” can be used for inside a PredicateObjectList. It allows for using the character ‘a’
as a placeholder for rdfs:type.
Parsing reference: https://www.w3.org/TR/turtle/#grammar-production-verb
Variants
A
IRI(IRI<'a>)
Trait Implementations
impl<'a> Eq for Verb<'a>
impl<'a> StructuralEq for Verb<'a>
impl<'a> StructuralPartialEq for Verb<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for Verb<'a>
impl<'a> Send for Verb<'a>
impl<'a> Sync for Verb<'a>
impl<'a> Unpin for Verb<'a>
impl<'a> UnwindSafe for Verb<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more