pub struct Im2colWideArgs {
pub pixel_box_lower_corner_width: i32,
pub pixel_box_upper_corner_width: i32,
pub channels_per_pixel: u32,
pub pixels_per_column: u32,
}Expand description
Args for im2col wide tensor maps
Fields§
§pixel_box_lower_corner_width: i32Pixel box lower corner width. TODO: How does this work?
pixel_box_upper_corner_width: i32Pixel box upper corner width. TODO: How does this work?
channels_per_pixel: u32Channels per pixel
pixels_per_column: u32Pixels per column
Implementations§
Trait Implementations§
Source§impl Clone for Im2colWideArgs
impl Clone for Im2colWideArgs
Source§fn clone(&self) -> Im2colWideArgs
fn clone(&self) -> Im2colWideArgs
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Im2colWideArgs
impl Debug for Im2colWideArgs
Source§impl Hash for Im2colWideArgs
impl Hash for Im2colWideArgs
Source§impl PartialEq for Im2colWideArgs
impl PartialEq for Im2colWideArgs
impl Eq for Im2colWideArgs
impl StructuralPartialEq for Im2colWideArgs
Auto Trait Implementations§
impl Freeze for Im2colWideArgs
impl RefUnwindSafe for Im2colWideArgs
impl Send for Im2colWideArgs
impl Sync for Im2colWideArgs
impl Unpin for Im2colWideArgs
impl UnwindSafe for Im2colWideArgs
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.