pub struct ChunkOutPod<P, const R: usize>(pub P);Expand description
POD-specialized ChunkOut variant.
This keeps the same semantics as ChunkOut but uses a bytemuck-backed
representation cast to flatten [[Y; R]; N] into [Y; R * N] without the
generic scratch-buffer path.
This is only available when Y is bytemuck::Pod and is mainly a codegen/cache
choice, not a semantic one.
§Examples
/// rust /// use dsp_process::{ChunkOutPod, FnSplitProcess, Process, Split}; /// /// let mut p = Split::stateless(ChunkOutPod::<_, 2>(FnSplitProcess(|_: &mut (), x: i32| { /// [x, -x] /// }))); /// assert_eq!(p.process([2, 3]), [2, -2, 3, -3]); ///
Tuple Fields§
§0: PTrait Implementations§
Source§impl<P: Clone, const R: usize> Clone for ChunkOutPod<P, R>
impl<P: Clone, const R: usize> Clone for ChunkOutPod<P, R>
Source§fn clone(&self) -> ChunkOutPod<P, R>
fn clone(&self) -> ChunkOutPod<P, R>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<P: Copy, const R: usize> Copy for ChunkOutPod<P, R>
Source§impl<P: Default, const R: usize> Default for ChunkOutPod<P, R>
impl<P: Default, const R: usize> Default for ChunkOutPod<P, R>
Source§fn default() -> ChunkOutPod<P, R>
fn default() -> ChunkOutPod<P, R>
Returns the “default value” for a type. Read more
Source§impl<C: SplitInplace<[X; 1], S>, S, X: Copy, const N: usize> SplitInplace<[X; N], S> for ChunkOutPod<C, 1>
Available on crate feature bytemuck only.
impl<C: SplitInplace<[X; 1], S>, S, X: Copy, const N: usize> SplitInplace<[X; N], S> for ChunkOutPod<C, 1>
Available on crate feature
bytemuck only.Source§impl<C, S, X: Copy, Y: Pod, const N: usize, const R: usize, const M: usize> SplitProcess<[X; N], [Y; M], S> for ChunkOutPod<C, R>where
C: SplitProcess<X, [Y; R], S>,
Available on crate feature bytemuck only.
impl<C, S, X: Copy, Y: Pod, const N: usize, const R: usize, const M: usize> SplitProcess<[X; N], [Y; M], S> for ChunkOutPod<C, R>where
C: SplitProcess<X, [Y; R], S>,
Available on crate feature
bytemuck only.Auto Trait Implementations§
impl<P, const R: usize> Freeze for ChunkOutPod<P, R>where
P: Freeze,
impl<P, const R: usize> RefUnwindSafe for ChunkOutPod<P, R>where
P: RefUnwindSafe,
impl<P, const R: usize> Send for ChunkOutPod<P, R>where
P: Send,
impl<P, const R: usize> Sync for ChunkOutPod<P, R>where
P: Sync,
impl<P, const R: usize> Unpin for ChunkOutPod<P, R>where
P: Unpin,
impl<P, const R: usize> UnsafeUnpin for ChunkOutPod<P, R>where
P: UnsafeUnpin,
impl<P, const R: usize> UnwindSafe for ChunkOutPod<P, R>where
P: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<'a, X, S, T, const L: usize> SplitViewInplace<ViewMut<'a, X, FrameMajor, L>, S> for T
impl<'a, X, S, T, const L: usize> SplitViewInplace<ViewMut<'a, X, FrameMajor, L>, S> for T
Source§fn inplace_view(&self, state: &mut S, xy: ViewMut<'a, X, FrameMajor, L>)
fn inplace_view(&self, state: &mut S, xy: ViewMut<'a, X, FrameMajor, L>)
Process one typed view in place.
Source§impl<'a, 'b, X, Y, S, T, const L: usize> SplitViewProcess<View<'a, X, FrameMajor, L>, ViewMut<'b, Y, FrameMajor, L>, S> for T
impl<'a, 'b, X, Y, S, T, const L: usize> SplitViewProcess<View<'a, X, FrameMajor, L>, ViewMut<'b, Y, FrameMajor, L>, S> for T
Source§fn process_view(
&self,
state: &mut S,
x: View<'a, X, FrameMajor, L>,
y: ViewMut<'b, Y, FrameMajor, L>,
)
fn process_view( &self, state: &mut S, x: View<'a, X, FrameMajor, L>, y: ViewMut<'b, Y, FrameMajor, L>, )
Process one typed input view into one typed output view.