pub enum EntryValueRef<'a, T, B, M> {
Id(Meta<&'a Id<T, B>, &'a M>),
Type(&'a Meta<Vec<Meta<Id<T, B>, M>, Global>, M>),
Graph(&'a HashSet<Stripped<Meta<Indexed<Object<T, B, M>, M>, M>>, RandomState>),
Included(&'a HashSet<Stripped<Meta<Indexed<Node<T, B, M>, M>, M>>, RandomState>),
Reverse(&'a ReverseProperties<T, B, M>),
Property(&'a [Stripped<Meta<Indexed<Object<T, B, M>, M>, M>>]),
}
Variants
Id(Meta<&'a Id<T, B>, &'a M>)
Type(&'a Meta<Vec<Meta<Id<T, B>, M>, Global>, M>)
Graph(&'a HashSet<Stripped<Meta<Indexed<Object<T, B, M>, M>, M>>, RandomState>)
Included(&'a HashSet<Stripped<Meta<Indexed<Node<T, B, M>, M>, M>>, RandomState>)
Reverse(&'a ReverseProperties<T, B, M>)
Property(&'a [Stripped<Meta<Indexed<Object<T, B, M>, M>, M>>])
Implementations
sourceimpl<'a, T, B, M> EntryValueRef<'a, T, B, M>
impl<'a, T, B, M> EntryValueRef<'a, T, B, M>
pub fn is_json_array(&self) -> bool
pub fn is_json_object(&self) -> bool
Trait Implementations
sourceimpl<'a, T, B, M> Clone for EntryValueRef<'a, T, B, M>
impl<'a, T, B, M> Clone for EntryValueRef<'a, T, B, M>
sourcefn clone(&self) -> EntryValueRef<'a, T, B, M>
fn clone(&self) -> EntryValueRef<'a, T, B, M>
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl<'a, T, B, M, N> PrecomputeSizeWithContext<N> for EntryValueRef<'a, T, B, M>where
N: Vocabulary<Iri = T, BlankId = B>,
impl<'a, T, B, M, N> PrecomputeSizeWithContext<N> for EntryValueRef<'a, T, B, M>where
N: Vocabulary<Iri = T, BlankId = B>,
sourceimpl<'a, T, B, M, N> PrintWithSizeAndContext<N> for EntryValueRef<'a, T, B, M>where
N: Vocabulary<Iri = T, BlankId = B>,
impl<'a, T, B, M, N> PrintWithSizeAndContext<N> for EntryValueRef<'a, T, B, M>where
N: Vocabulary<Iri = T, BlankId = B>,
impl<'a, T, B, M> Copy for EntryValueRef<'a, T, B, M>
Auto Trait Implementations
impl<'a, T, B, M> RefUnwindSafe for EntryValueRef<'a, T, B, M>where
B: RefUnwindSafe,
M: RefUnwindSafe,
T: RefUnwindSafe,
impl<'a, T, B, M> Send for EntryValueRef<'a, T, B, M>where
B: Sync,
M: Sync,
T: Sync,
impl<'a, T, B, M> Sync for EntryValueRef<'a, T, B, M>where
B: Sync,
M: Sync,
T: Sync,
impl<'a, T, B, M> Unpin for EntryValueRef<'a, T, B, M>
impl<'a, T, B, M> UnwindSafe for EntryValueRef<'a, T, B, M>where
B: RefUnwindSafe,
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