pub trait IntoTakeRandom<'a> {
    type Item;
    type TakeRandom;

    fn take_rand(&self) -> Self::TakeRandom;
}
Expand description

Create a type that implements a faster TakeRandom.

Required Associated Types

Required Methods

Create a type that implements TakeRandom.

Implementors