pub trait InsertOpt<K: Eq + Hash, V> {
// Required method
fn insert_opt(&mut self, key: impl Into<K>, value: Option<impl Into<V>>);
}
Required Methods§
Sourcefn insert_opt(&mut self, key: impl Into<K>, value: Option<impl Into<V>>)
fn insert_opt(&mut self, key: impl Into<K>, value: Option<impl Into<V>>)
Insert an item only if it exists
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.