Struct std::hash::BuildHasherDefault [] [src]

pub struct BuildHasherDefault<H>(_);
1.7.0

A structure which implements BuildHasher for all Hasher types which also implement Default.

This struct is 0-sized and does not need construction.

Trait Implementations

impl<H> Default for BuildHasherDefault<H>

fn default() -> BuildHasherDefault<H>

impl<H> Clone for BuildHasherDefault<H>

fn clone(&self) -> BuildHasherDefault<H>

fn clone_from(&mut self, source: &Self)1.0.0

impl<H> BuildHasher for BuildHasherDefault<H> where H: Default + Hasher

type Hasher = H

fn build_hasher(&self) -> H

impl<H> Debug for BuildHasherDefault<H>1.9.0

fn fmt(&self, f: &mut Formatter) -> Result<(), Error>