pub struct HashLookupTable {
pub entries: HashMap<u32, HashEntry>,
}Fields§
§entries: HashMap<u32, HashEntry>Implementations§
Trait Implementations§
Source§impl Clone for HashLookupTable
impl Clone for HashLookupTable
Source§fn clone(&self) -> HashLookupTable
fn clone(&self) -> HashLookupTable
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for HashLookupTable
impl Debug for HashLookupTable
Source§impl From<&HashLookupTable> for GenericChunk
impl From<&HashLookupTable> for GenericChunk
Source§fn from(chunk: &HashLookupTable) -> GenericChunk
fn from(chunk: &HashLookupTable) -> GenericChunk
Converts to this type from the input type.
Source§impl TryFrom<GenericChunk> for HashLookupTable
impl TryFrom<GenericChunk> for HashLookupTable
Auto Trait Implementations§
impl Freeze for HashLookupTable
impl RefUnwindSafe for HashLookupTable
impl Send for HashLookupTable
impl Sync for HashLookupTable
impl Unpin for HashLookupTable
impl UnwindSafe for HashLookupTable
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