pub struct StridedCopyParams {
pub rows: u32,
pub cols: u32,
pub stride_row: u32,
pub stride_col: u32,
}Expand description
Parameters for a strided copy operation.
Fields§
§rows: u32Number of rows in the output.
cols: u32Number of columns in the output.
stride_row: u32Stride (in elements) between rows in the source.
stride_col: u32Stride (in elements) between columns in the source.
Auto Trait Implementations§
impl Freeze for StridedCopyParams
impl RefUnwindSafe for StridedCopyParams
impl Send for StridedCopyParams
impl Sync for StridedCopyParams
impl Unpin for StridedCopyParams
impl UnsafeUnpin for StridedCopyParams
impl UnwindSafe for StridedCopyParams
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