#[repr(u32)]pub enum ConvMode {
DEFAULT = 0,
EXPAND = 1,
}Expand description
Helps determine the size of output of convolution
Variants§
DEFAULT = 0
Default convolution mode where output size is same as input size
EXPAND = 1
Output of convolution is expanded based on signal and filter sizes
Trait Implementations§
impl Copy for ConvMode
impl StructuralPartialEq for ConvMode
Auto Trait Implementations§
impl Freeze for ConvMode
impl RefUnwindSafe for ConvMode
impl Send for ConvMode
impl Sync for ConvMode
impl Unpin for ConvMode
impl UnwindSafe for ConvMode
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