Struct std::collections::hash_map::EntryPlace
[−]
[src]
#[must_use = "places do nothing unless written to with `<-` syntax"]pub struct EntryPlace<'a, K: 'a, V: 'a> { /* fields omitted */ }
🔬 This is a nightly-only experimental API. (collection_placement
#30172)
struct name and placement protocol is subject to change
A place for insertion to a Entry
.
See HashMap::entry
for details.
Trait Implementations
impl<'a, K: 'a + Debug, V: 'a + Debug> Debug for EntryPlace<'a, K, V>
[src]
fn fmt(&self, f: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl<'a, K, V> Drop for EntryPlace<'a, K, V>
[src]
impl<'a, K, V> Place<V> for EntryPlace<'a, K, V>
[src]
fn pointer(&mut self) -> *mut V
[src]
Returns the address where the input value will be written. Note that the data at this address is generally uninitialized, and thus one should use ptr::write
for initializing it. Read more