pub trait Sampler: Iterator<Item = usize> { // Required method fn len(&self) -> usize; }
Trait for sampling indices