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