pub trait HashMany {
    type Input;
    type Output;
    fn hash_many(
        &self,
        input: &[Self::Input],
        num_outputs: u16
    ) -> Vec<Self::Output, Global>ⓘNotable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
    A: Allocator, ;
}Expand description
A trait for a hash function that produces multiple outputs.