pub struct ExpandedIndex<P: IndexDomain, C: IndexDomain>(/* private fields */);Trait Implementations§
Source§impl<P: Clone + IndexDomain, C: Clone + IndexDomain> Clone for ExpandedIndex<P, C>
impl<P: Clone + IndexDomain, C: Clone + IndexDomain> Clone for ExpandedIndex<P, C>
Source§fn clone(&self) -> ExpandedIndex<P, C>
fn clone(&self) -> ExpandedIndex<P, C>
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 moreSource§impl<P: GroupKey, C: GroupKey> GroupKey for ExpandedIndex<P, C>
impl<P: GroupKey, C: GroupKey> GroupKey for ExpandedIndex<P, C>
fn resolve_key<'a>( label: &'static str, graphrecord: &'a GraphRecord, key: &Self::Owned, ) -> QueryResult<Self::Index<'a>>
Source§impl<P: IndexDomain, C: IndexDomain> IndexDomain for ExpandedIndex<P, C>
impl<P: IndexDomain, C: IndexDomain> IndexDomain for ExpandedIndex<P, C>
Auto Trait Implementations§
impl<P, C> Freeze for ExpandedIndex<P, C>
impl<P, C> RefUnwindSafe for ExpandedIndex<P, C>where
P: RefUnwindSafe,
C: RefUnwindSafe,
impl<P, C> Send for ExpandedIndex<P, C>
impl<P, C> Sync for ExpandedIndex<P, C>
impl<P, C> Unpin for ExpandedIndex<P, C>
impl<P, C> UnsafeUnpin for ExpandedIndex<P, C>
impl<P, C> UnwindSafe for ExpandedIndex<P, C>where
P: UnwindSafe,
C: UnwindSafe,
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more