pub trait Downsample<T, N, Y>: Lists<T>
where N: Maybe<usize>, Y: List<T>,
{ // Required method fn downsample(self, n: N, phase: usize) -> Self::RowsMapped<Y>; }

Required Methods§

source

fn downsample(self, n: N, phase: usize) -> Self::RowsMapped<Y>

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T, L> Downsample<T, usize, Vec<T>> for L
where L: Lists<T, RowOwned: List<T>>, T: Clone,

source§

impl<T, L, const N: usize> Downsample<T, (), [T; N]> for L
where L: Lists<T, RowOwned: List<T>, Width = usize>, T: Clone, [(); { _ }]:,