Enum turtle_syntax::Object
source · [−]pub enum Object<F> {
Iri(Iri<F>),
BlankNode(BlankNode<F>),
Collection(Vec<Loc<Self, F>>),
Literal(Literal<F>),
}
Expand description
Object of a triples declaration.
Variants
Iri(Iri<F>)
IRI or compact IRI.
BlankNode(BlankNode<F>)
Blank node.
Collection(Vec<Loc<Self, F>>)
Collection of objects.
Literal(Literal<F>)
Literal value.
Trait Implementations
Auto Trait Implementations
impl<F> RefUnwindSafe for Object<F> where
F: RefUnwindSafe,
impl<F> Send for Object<F> where
F: Send,
impl<F> Sync for Object<F> where
F: Sync,
impl<F> Unpin for Object<F> where
F: Unpin,
impl<F> UnwindSafe for Object<F> where
F: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more