pub struct SmoothOutputF32<'a, const MAX_BLOCKSIZE: usize> {
pub values: &'a [f32; MAX_BLOCKSIZE],
pub status: SmoothStatus,
}Fields§
§values: &'a [f32; MAX_BLOCKSIZE]§status: SmoothStatusImplementations§
Source§impl<'a, const MAX_BLOCKSIZE: usize> SmoothOutputF32<'a, MAX_BLOCKSIZE>
impl<'a, const MAX_BLOCKSIZE: usize> SmoothOutputF32<'a, MAX_BLOCKSIZE>
pub fn is_smoothing(&self) -> bool
Trait Implementations§
Source§impl<'a, I, const MAX_BLOCKSIZE: usize> Index<I> for SmoothOutputF32<'a, MAX_BLOCKSIZE>where
I: SliceIndex<[f32]>,
impl<'a, I, const MAX_BLOCKSIZE: usize> Index<I> for SmoothOutputF32<'a, MAX_BLOCKSIZE>where
I: SliceIndex<[f32]>,
Auto Trait Implementations§
impl<'a, const MAX_BLOCKSIZE: usize> Freeze for SmoothOutputF32<'a, MAX_BLOCKSIZE>
impl<'a, const MAX_BLOCKSIZE: usize> RefUnwindSafe for SmoothOutputF32<'a, MAX_BLOCKSIZE>
impl<'a, const MAX_BLOCKSIZE: usize> Send for SmoothOutputF32<'a, MAX_BLOCKSIZE>
impl<'a, const MAX_BLOCKSIZE: usize> Sync for SmoothOutputF32<'a, MAX_BLOCKSIZE>
impl<'a, const MAX_BLOCKSIZE: usize> Unpin for SmoothOutputF32<'a, MAX_BLOCKSIZE>
impl<'a, const MAX_BLOCKSIZE: usize> UnwindSafe for SmoothOutputF32<'a, MAX_BLOCKSIZE>
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