pub enum OwnedRdfTerm {
Iri(IriBuf),
BlankId(BlankIdBuf),
Literal(RdfLiteral),
}Expand description
Owned RDF term.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for OwnedRdfTerm
impl Clone for OwnedRdfTerm
Source§fn clone(&self) -> OwnedRdfTerm
fn clone(&self) -> OwnedRdfTerm
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl !Freeze for OwnedRdfTerm
impl !Sync for OwnedRdfTerm
impl RefUnwindSafe for OwnedRdfTerm
impl Send for OwnedRdfTerm
impl Unpin for OwnedRdfTerm
impl UnsafeUnpin for OwnedRdfTerm
impl UnwindSafe for OwnedRdfTerm
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> BorrowUnordered for T
impl<T> BorrowUnordered for T
Source§fn as_unordered(&self) -> &Unordered<T>
fn as_unordered(&self) -> &Unordered<T>
Views this value as an
Unordered reference.