1 2 3 4 5 6 7 8 9 10 11 12 13
pub trait Sampler<'a>: Sized { type Index: 'a; type Sample: 'a; fn get(&self, index: Self::Index) -> Self::Sample; } pub trait SamplerMut<'a>: Sized { type Index: 'a; type Sample: 'a; fn get(&mut self, index: Self::Index) -> Self::Sample; }