#[non_exhaustive]#[repr(u32)]pub enum cudnnFusedOpsPointerPlaceHolder_t {
CUDNN_PTR_NULL = 0,
CUDNN_PTR_ELEM_ALIGNED = 1,
CUDNN_PTR_16B_ALIGNED = 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 cudnnFusedOpsPointerPlaceHolder_t
impl Clone for cudnnFusedOpsPointerPlaceHolder_t
source§fn clone(&self) -> cudnnFusedOpsPointerPlaceHolder_t
fn clone(&self) -> cudnnFusedOpsPointerPlaceHolder_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 PartialEq for cudnnFusedOpsPointerPlaceHolder_t
impl PartialEq for cudnnFusedOpsPointerPlaceHolder_t
source§fn eq(&self, other: &cudnnFusedOpsPointerPlaceHolder_t) -> bool
fn eq(&self, other: &cudnnFusedOpsPointerPlaceHolder_t) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for cudnnFusedOpsPointerPlaceHolder_t
impl Eq for cudnnFusedOpsPointerPlaceHolder_t
impl StructuralPartialEq for cudnnFusedOpsPointerPlaceHolder_t
Auto Trait Implementations§
impl RefUnwindSafe for cudnnFusedOpsPointerPlaceHolder_t
impl Send for cudnnFusedOpsPointerPlaceHolder_t
impl Sync for cudnnFusedOpsPointerPlaceHolder_t
impl Unpin for cudnnFusedOpsPointerPlaceHolder_t
impl UnwindSafe for cudnnFusedOpsPointerPlaceHolder_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