Trait EntryExt

Source
pub trait EntryExt {
    // Required method
    fn entry<'a>(&'a mut self, index: usize) -> Entry<'a, Self>;
}

Required Methods§

Source

fn entry<'a>(&'a mut self, index: usize) -> Entry<'a, Self>

Get a key’s entry for in-place manipulation.

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.

Implementors§