#[non_exhaustive]#[repr(u32)]pub enum cudaKernelNodeAttrID {
cudaKernelNodeAttributeAccessPolicyWindow = 1,
cudaKernelNodeAttributeCooperative = 2,
}
Expand description
Graph kernel node Attributes
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.
cudaKernelNodeAttributeAccessPolicyWindow = 1
< Identifier for ::cudaKernelNodeAttrValue::accessPolicyWindow.
cudaKernelNodeAttributeCooperative = 2
< Allows a kernel node to be cooperative (see ::cudaLaunchCooperativeKernel).
Trait Implementations§
Source§impl Clone for cudaKernelNodeAttrID
impl Clone for cudaKernelNodeAttrID
Source§fn clone(&self) -> cudaKernelNodeAttrID
fn clone(&self) -> cudaKernelNodeAttrID
Returns a duplicate 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 cudaKernelNodeAttrID
impl Debug for cudaKernelNodeAttrID
Source§impl Hash for cudaKernelNodeAttrID
impl Hash for cudaKernelNodeAttrID
Source§impl PartialEq for cudaKernelNodeAttrID
impl PartialEq for cudaKernelNodeAttrID
impl Copy for cudaKernelNodeAttrID
impl Eq for cudaKernelNodeAttrID
impl StructuralPartialEq for cudaKernelNodeAttrID
Auto Trait Implementations§
impl Freeze for cudaKernelNodeAttrID
impl RefUnwindSafe for cudaKernelNodeAttrID
impl Send for cudaKernelNodeAttrID
impl Sync for cudaKernelNodeAttrID
impl Unpin for cudaKernelNodeAttrID
impl UnwindSafe for cudaKernelNodeAttrID
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