pub enum EntryRef<'a, T, B, M> {
Id(&'a Entry<Id<T, B>, M>),
Type(&'a Entry<Vec<Meta<Id<T, B>, M>, Global>, M>),
Graph(&'a Entry<HashSet<Stripped<Meta<Indexed<Object<T, B, M>, M>, M>>, RandomState>, M>),
Included(&'a Entry<HashSet<Stripped<Meta<Indexed<Node<T, B, M>, M>, M>>, RandomState>, M>),
Reverse(&'a Entry<ReverseProperties<T, B, M>, M>),
Property(Meta<&'a Id<T, B>, &'a M>, &'a [Stripped<Meta<Indexed<Object<T, B, M>, M>, M>>]),
}
Variants
Id(&'a Entry<Id<T, B>, M>)
Type(&'a Entry<Vec<Meta<Id<T, B>, M>, Global>, M>)
Graph(&'a Entry<HashSet<Stripped<Meta<Indexed<Object<T, B, M>, M>, M>>, RandomState>, M>)
Included(&'a Entry<HashSet<Stripped<Meta<Indexed<Node<T, B, M>, M>, M>>, RandomState>, M>)
Reverse(&'a Entry<ReverseProperties<T, B, M>, M>)
Property(Meta<&'a Id<T, B>, &'a M>, &'a [Stripped<Meta<Indexed<Object<T, B, M>, M>, M>>])
Implementations
sourceimpl<'a, T, B, M> EntryRef<'a, T, B, M>
impl<'a, T, B, M> EntryRef<'a, T, B, M>
pub fn into_key(self) -> EntryKeyRef<'a, T, B, M>
pub fn key(&self) -> EntryKeyRef<'a, T, B, M>
pub fn into_value(self) -> EntryValueRef<'a, T, B, M>
pub fn value(&self) -> EntryValueRef<'a, T, B, M>
pub fn into_key_value(
self
) -> (EntryKeyRef<'a, T, B, M>, EntryValueRef<'a, T, B, M>)
pub fn as_key_value(
&self
) -> (EntryKeyRef<'a, T, B, M>, EntryValueRef<'a, T, B, M>)
Trait Implementations
impl<'a, T, B, M> Copy for EntryRef<'a, T, B, M>
Auto Trait Implementations
impl<'a, T, B, M> RefUnwindSafe for EntryRef<'a, T, B, M>where
B: RefUnwindSafe,
M: RefUnwindSafe,
T: RefUnwindSafe,
impl<'a, T, B, M> Send for EntryRef<'a, T, B, M>where
B: Sync,
M: Sync,
T: Sync,
impl<'a, T, B, M> Sync for EntryRef<'a, T, B, M>where
B: Sync,
M: Sync,
T: Sync,
impl<'a, T, B, M> Unpin for EntryRef<'a, T, B, M>
impl<'a, T, B, M> UnwindSafe for EntryRef<'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