#[non_exhaustive]#[repr(u32)]pub enum cudnnConvolutionMode_t {
CUDNN_CONVOLUTION = 0,
CUDNN_CROSS_CORRELATION = 1,
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
source§impl Clone for cudnnConvolutionMode_t
impl Clone for cudnnConvolutionMode_t
source§fn clone(&self) -> cudnnConvolutionMode_t
fn clone(&self) -> cudnnConvolutionMode_t
Returns a copy 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 moresource§impl Debug for cudnnConvolutionMode_t
impl Debug for cudnnConvolutionMode_t
source§impl Hash for cudnnConvolutionMode_t
impl Hash for cudnnConvolutionMode_t
source§impl PartialEq for cudnnConvolutionMode_t
impl PartialEq for cudnnConvolutionMode_t
source§fn eq(&self, other: &cudnnConvolutionMode_t) -> bool
fn eq(&self, other: &cudnnConvolutionMode_t) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for cudnnConvolutionMode_t
impl Eq for cudnnConvolutionMode_t
impl StructuralPartialEq for cudnnConvolutionMode_t
Auto Trait Implementations§
impl RefUnwindSafe for cudnnConvolutionMode_t
impl Send for cudnnConvolutionMode_t
impl Sync for cudnnConvolutionMode_t
impl Unpin for cudnnConvolutionMode_t
impl UnwindSafe for cudnnConvolutionMode_t
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