Enum rcudnn_sys::cudnnNormOps_t
source · #[non_exhaustive]#[repr(u32)]pub enum cudnnNormOps_t {
CUDNN_NORM_OPS_NORM = 0,
CUDNN_NORM_OPS_NORM_ACTIVATION = 1,
CUDNN_NORM_OPS_NORM_ADD_ACTIVATION = 2,
}
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 cudnnNormOps_t
impl Clone for cudnnNormOps_t
source§fn clone(&self) -> cudnnNormOps_t
fn clone(&self) -> cudnnNormOps_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 cudnnNormOps_t
impl Debug for cudnnNormOps_t
source§impl Hash for cudnnNormOps_t
impl Hash for cudnnNormOps_t
source§impl PartialEq for cudnnNormOps_t
impl PartialEq for cudnnNormOps_t
source§fn eq(&self, other: &cudnnNormOps_t) -> bool
fn eq(&self, other: &cudnnNormOps_t) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for cudnnNormOps_t
impl Eq for cudnnNormOps_t
impl StructuralPartialEq for cudnnNormOps_t
Auto Trait Implementations§
impl RefUnwindSafe for cudnnNormOps_t
impl Send for cudnnNormOps_t
impl Sync for cudnnNormOps_t
impl Unpin for cudnnNormOps_t
impl UnwindSafe for cudnnNormOps_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