Trait InitWithHasher

Source
pub trait InitWithHasher {
    // Required methods
    fn new() -> Self
       where Self: Sized;
    fn with_capacity(n: usize) -> Self
       where Self: Sized;
}

Required Methods§

Source

fn new() -> Self
where Self: Sized,

Source

fn with_capacity(n: usize) -> Self
where Self: Sized,

Implementors§

Source§

impl<K, V> InitWithHasher for DictMap<K, V>