pub struct Convolution {
pub kernel: Vec<f32>,
}Expand description
1D convolution with a small fixed kernel
Fields§
§kernel: Vec<f32>Trait Implementations§
Source§impl Default for Convolution
impl Default for Convolution
Auto Trait Implementations§
impl Freeze for Convolution
impl RefUnwindSafe for Convolution
impl Send for Convolution
impl Sync for Convolution
impl Unpin for Convolution
impl UnsafeUnpin for Convolution
impl UnwindSafe for Convolution
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