1pub trait SampleFormat: rodio::Sample + Sync + Send {} 2 3impl SampleFormat for f32 {} 4impl SampleFormat for i16 {} 5 6pub type FormatPCM16 = i16;