pub struct Conv2DShape {
pub oh: u32,
pub ow: u32,
pub kh: u32,
pub kw: u32,
}Expand description
Conv2D shape for tiling purposes (numeric dimensions).
Fields§
§oh: u32Output height.
ow: u32Output width.
kh: u32Kernel height.
kw: u32Kernel width.
Trait Implementations§
Source§impl Clone for Conv2DShape
impl Clone for Conv2DShape
Source§fn clone(&self) -> Conv2DShape
fn clone(&self) -> Conv2DShape
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 Conv2DShape
impl RefUnwindSafe for Conv2DShape
impl Send for Conv2DShape
impl Sync for Conv2DShape
impl Unpin for Conv2DShape
impl UnsafeUnpin for Conv2DShape
impl UnwindSafe for Conv2DShape
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