Struct core::hash::BuildHasherDefault1.7.0 [] [src]

pub struct BuildHasherDefault<H>(_);

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> Debug for BuildHasherDefault<H>
1.9.0
[src]

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

Formats the value using the given formatter.

impl<H: Default + Hasher> BuildHasher for BuildHasherDefault<H>
[src]

type Hasher = H

Type of the hasher that will be created.

fn build_hasher(&self) -> H

Creates a new hasher.

impl<H> Clone for BuildHasherDefault<H>
[src]

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

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more

impl<H> Default for BuildHasherDefault<H>
[src]

fn default() -> BuildHasherDefault<H>

Returns the "default value" for a type. Read more