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