pub struct RawEntryBuilder<'map, K, V, const N: usize, S>(/* private fields */);
Expand description
A builder for computing where in a [HashMap
] a key-value pair would be stored.
See the HashMap::raw_entry
docs for usage examples.
Implementations§
Source§impl<'map, K, V, const N: usize, S> RawEntryBuilder<'map, K, V, N, S>where
S: BuildHasher,
impl<'map, K, V, const N: usize, S> RawEntryBuilder<'map, K, V, N, S>where
S: BuildHasher,
Trait Implementations§
Source§impl<K, V, const N: usize, S> Debug for RawEntryBuilder<'_, K, V, N, S>
impl<K, V, const N: usize, S> Debug for RawEntryBuilder<'_, K, V, N, S>
Source§impl<'map, K, V, const N: usize, S> From<RawEntryBuilder<'map, K, V, S>> for RawEntryBuilder<'map, K, V, N, S>
impl<'map, K, V, const N: usize, S> From<RawEntryBuilder<'map, K, V, S>> for RawEntryBuilder<'map, K, V, N, S>
Source§fn from(m: RawEntryBuilder<'map, K, V, S>) -> Self
fn from(m: RawEntryBuilder<'map, K, V, S>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<'map, K, V, const N: usize, S> Freeze for RawEntryBuilder<'map, K, V, N, S>
impl<'map, K, V, const N: usize, S> RefUnwindSafe for RawEntryBuilder<'map, K, V, N, S>
impl<'map, K, V, const N: usize, S> Send for RawEntryBuilder<'map, K, V, N, S>
impl<'map, K, V, const N: usize, S> Sync for RawEntryBuilder<'map, K, V, N, S>
impl<'map, K, V, const N: usize, S> Unpin for RawEntryBuilder<'map, K, V, N, S>
impl<'map, K, V, const N: usize, S> UnwindSafe for RawEntryBuilder<'map, K, V, N, S>
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