Trait signal_processing::List
source · pub trait List<T>: MaybeList<T> + Matrix<T> + ListOrSingle<T> + IntoList<T, Self, ()> {
type ResizedList<const L: usize>: OwnedList<T>;
// Required method
fn static_resize_list<const L: usize>(
self,
dyn_length: usize,
fill: impl FnMut() -> T
) -> Self::ResizedList<L>
where T: Clone,
Self: Sized;
}
Required Associated Types§
type ResizedList<const L: usize>: OwnedList<T>
Required Methods§
fn static_resize_list<const L: usize>( self, dyn_length: usize, fill: impl FnMut() -> T ) -> Self::ResizedList<L>
Object Safety§
This trait is not object safe.