pub enum EntryRef<'a, T, M> {
Value(ValueEntryRef<'a, M>),
Type(TypeRef<'a, T>),
Language(LenientLanguageTag<'a>),
Direction(Direction),
}
Variants
Value(ValueEntryRef<'a, M>)
Type(TypeRef<'a, T>)
Language(LenientLanguageTag<'a>)
Direction(Direction)
Implementations
sourceimpl<'a, T, M> EntryRef<'a, T, M>
impl<'a, T, M> EntryRef<'a, T, M>
pub fn into_key(self) -> EntryKey
pub fn key(&self) -> EntryKey
pub fn into_value(self) -> EntryValueRef<'a, T, M>
pub fn value(&self) -> EntryValueRef<'a, T, M>
Trait Implementations
sourceimpl<'a, T, M, N> PrecomputeSizeWithContext<N> for EntryRef<'a, T, M>where
N: IriVocabulary<Iri = T>,
impl<'a, T, M, N> PrecomputeSizeWithContext<N> for EntryRef<'a, T, M>where
N: IriVocabulary<Iri = T>,
sourceimpl<'a, T, M, N> PrintWithSizeAndContext<N> for EntryRef<'a, T, M>where
N: IriVocabulary<Iri = T>,
impl<'a, T, M, N> PrintWithSizeAndContext<N> for EntryRef<'a, T, M>where
N: IriVocabulary<Iri = T>,
impl<'a, T, M> Copy for EntryRef<'a, T, M>
Auto Trait Implementations
impl<'a, T, M> RefUnwindSafe for EntryRef<'a, T, M>where
M: RefUnwindSafe,
T: RefUnwindSafe,
impl<'a, T, M> Send for EntryRef<'a, T, M>where
M: Sync,
T: Sync,
impl<'a, T, M> Sync for EntryRef<'a, T, M>where
M: Sync,
T: Sync,
impl<'a, T, M> Unpin for EntryRef<'a, T, M>
impl<'a, T, M> UnwindSafe for EntryRef<'a, T, M>where
M: RefUnwindSafe,
T: RefUnwindSafe,
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