Trait signal_processing::Decode

source ·
pub trait Decode<T, I>: Lists<I>
where I: Integer + Bounded, T: Float,
{ // Required method fn decode(self, dynamic_range: RangeInclusive<T>) -> Self::Mapped<T>; }

Required Methods§

source

fn decode(self, dynamic_range: RangeInclusive<T>) -> Self::Mapped<T>

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T, L, I> Decode<T, I> for L
where I: Integer + Bounded + NumCast + Clone, T: Float, L: Lists<I>,