Struct borsh::maybestd::collections::hash_map::RawEntryBuilder [−][src]
pub struct RawEntryBuilder<'a, K, V, S> where
K: 'a,
V: 'a,
S: 'a, { /* fields omitted */ }
🔬 This is a nightly-only experimental API. (
hash_raw_entry
)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
pub fn from_key<Q>(self, k: &Q) -> Option<(&'a K, &'a V)> where
K: Borrow<Q>,
Q: Hash + Eq + ?Sized,
[src]🔬 This is a nightly-only experimental API. (hash_raw_entry
)
pub fn from_key<Q>(self, k: &Q) -> Option<(&'a K, &'a V)> where
K: Borrow<Q>,
Q: Hash + Eq + ?Sized,
[src]🔬 This is a nightly-only experimental API. (
hash_raw_entry
)Access an entry by key.