pub struct ConvolveMatrixData {
pub(crate) target_x: u32,
pub(crate) target_y: u32,
pub(crate) columns: u32,
pub(crate) rows: u32,
pub(crate) data: Vec<f32>,
}
Expand description
A convolve matrix representation.
Used primarily by ConvolveMatrix
.
Fields§
§target_x: u32
§target_y: u32
§columns: u32
§rows: u32
§data: Vec<f32>
Implementations§
Source§impl ConvolveMatrixData
impl ConvolveMatrixData
Trait Implementations§
Source§impl Clone for ConvolveMatrixData
impl Clone for ConvolveMatrixData
Source§fn clone(&self) -> ConvolveMatrixData
fn clone(&self) -> ConvolveMatrixData
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for ConvolveMatrixData
impl RefUnwindSafe for ConvolveMatrixData
impl Send for ConvolveMatrixData
impl Sync for ConvolveMatrixData
impl Unpin for ConvolveMatrixData
impl UnwindSafe for ConvolveMatrixData
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