pub trait SamplerMut<'a>: Sized {
    type Index: 'a;
    type Sample: 'a;

    // Required method
    fn get(&mut self, index: Self::Index) -> Self::Sample;
}

Required Associated Types§

source

type Index: 'a

source

type Sample: 'a

Required Methods§

source

fn get(&mut self, index: Self::Index) -> Self::Sample

Object Safety§

This trait is not object safe.

Implementors§