pub struct Handle<I> {
index: u32,
epoch: Epoch,
_marker: PhantomData<I>,
}
Fields§
§index: u32
§epoch: Epoch
§_marker: PhantomData<I>
Implementations§
Trait Implementations§
source§impl<I: Internable> Index<Handle<I>> for DataStore<I>
impl<I: Internable> Index<Handle<I>> for DataStore<I>
Retrieve an item from the store via handle
source§impl<I: Internable> Index<Handle<I>> for Interner<I>
impl<I: Internable> Index<Handle<I>> for Interner<I>
Retrieve the local data for an item from the interner via handle
§type Output = <I as Internable>::InternData
type Output = <I as Internable>::InternData
The returned type after indexing.
source§impl<I: Internable> IndexMut<Handle<I>> for DataStore<I>
impl<I: Internable> IndexMut<Handle<I>> for DataStore<I>
Retrieve a mutable item from the store via handle Retrieve an item from the store via handle
source§impl<I> MallocSizeOf for Handle<I>where
I: MallocSizeOf,
impl<I> MallocSizeOf for Handle<I>where
I: MallocSizeOf,
source§fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize
fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize
Measure the heap usage of all descendant heap-allocated structures, but
not the space taken up by the value itself.
source§impl<I: PartialEq> PartialEq for Handle<I>
impl<I: PartialEq> PartialEq for Handle<I>
impl<I> Copy for Handle<I>
impl<I: Eq> Eq for Handle<I>
impl<I> StructuralPartialEq for Handle<I>
Auto Trait Implementations§
impl<I> Freeze for Handle<I>
impl<I> RefUnwindSafe for Handle<I>where
I: RefUnwindSafe,
impl<I> Send for Handle<I>where
I: Send,
impl<I> Sync for Handle<I>where
I: Sync,
impl<I> Unpin for Handle<I>where
I: Unpin,
impl<I> UnwindSafe for Handle<I>where
I: 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> 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