Struct ncollide2df64::util::hash_map::Entry
pub struct Entry<K, V> { key: K, value: V, }
Entry of an HashMap
.
Fields
key | The key of the entry. |
value | The value of the entry. |
Trait Implementations
impl<K: Clone, V: Clone> Clone for Entry<K, V>
Automatically derived.
fn clone(&self) -> Entry<K, V>
impl<__E: Encoder, K: Encodable<__E>, V: Encodable<__E>> Encodable<__E> for Entry<K, V>
Automatically derived.
fn encode(&self, __arg_0: &mut __E)
impl<__D: Decoder, K: Decodable<__D>, V: Decodable<__D>> Decodable<__D> for Entry<K, V>
Automatically derived.