Trait rustc_data_structures::stable_hasher::StableHashingContextProvider [] [src]

pub trait StableHashingContextProvider {
    type ContextType;
    fn create_stable_hashing_context(&self) -> Self::ContextType;
}

Something that can provide a stable hashing context.

Associated Types

Required Methods

Implementations on Foreign Types

impl<'a, T: StableHashingContextProvider> StableHashingContextProvider for &'a T
[src]

impl<'a, T: StableHashingContextProvider> StableHashingContextProvider for &'a mut T
[src]

Implementors