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

Required Methods

Implementors