pub enum ContextIris {
Subject,
Predicate {
subject: Option<IriBuf>,
},
Object {
subject: Option<IriBuf>,
predicate: Option<IriBuf>,
},
}
Variants§
Trait Implementations§
Source§impl Clone for ContextIris
impl Clone for ContextIris
Source§fn clone(&self) -> ContextIris
fn clone(&self) -> ContextIris
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 moreAuto Trait Implementations§
impl Freeze for ContextIris
impl RefUnwindSafe for ContextIris
impl Send for ContextIris
impl Sync for ContextIris
impl Unpin for ContextIris
impl UnwindSafe for ContextIris
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