pub struct HashTableItem<ID: KeyType> {
hash: u64,
pub id: ID,
pub heap_idx: usize,
}Expand description
An entry in our hash table that:
- memoizes the hash
- contains the key (ID)
- contains the value (heap_idx - an index into the corresponding heap)
Fields§
§hash: u64§id: ID§heap_idx: usizeImplementations§
Auto Trait Implementations§
impl<ID> Freeze for HashTableItem<ID>where
ID: Freeze,
impl<ID> RefUnwindSafe for HashTableItem<ID>where
ID: RefUnwindSafe,
impl<ID> Send for HashTableItem<ID>where
ID: Send,
impl<ID> Sync for HashTableItem<ID>where
ID: Sync,
impl<ID> Unpin for HashTableItem<ID>where
ID: Unpin,
impl<ID> UnwindSafe for HashTableItem<ID>where
ID: 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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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