Trait signal_processing::Encode

source ·
pub trait Encode<T, I>: Lists<T>
where I: Integer + Bounded, T: Float,
{ // Required method fn encode<V>( self, dynamic_range: V, overflow: EncodeOverflow ) -> Self::Mapped<I> where V: Maybe<RangeInclusive<T>>; }

Required Methods§

source

fn encode<V>( self, dynamic_range: V, overflow: EncodeOverflow ) -> Self::Mapped<I>
where V: Maybe<RangeInclusive<T>>,

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T, L, I> Encode<T, I> for L
where I: Integer + Bounded + NumCast, T: Float + RemAssign + SubAssign, L: Lists<T>,