#[non_exhaustive]#[repr(u32)]pub enum CUstreamUpdateCaptureDependencies_flags_enum {
CU_STREAM_ADD_CAPTURE_DEPENDENCIES = 0,
CU_STREAM_SET_CAPTURE_DEPENDENCIES = 1,
}Expand description
Flags for ::cuStreamUpdateCaptureDependencies
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.
CU_STREAM_ADD_CAPTURE_DEPENDENCIES = 0
< Add new nodes to the dependency set
CU_STREAM_SET_CAPTURE_DEPENDENCIES = 1
< Replace the dependency set with the new nodes
Trait Implementations§
source§impl Clone for CUstreamUpdateCaptureDependencies_flags_enum
impl Clone for CUstreamUpdateCaptureDependencies_flags_enum
source§fn clone(&self) -> CUstreamUpdateCaptureDependencies_flags_enum
fn clone(&self) -> CUstreamUpdateCaptureDependencies_flags_enum
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 CUstreamUpdateCaptureDependencies_flags_enum
impl PartialEq for CUstreamUpdateCaptureDependencies_flags_enum
source§fn eq(&self, other: &CUstreamUpdateCaptureDependencies_flags_enum) -> bool
fn eq(&self, other: &CUstreamUpdateCaptureDependencies_flags_enum) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for CUstreamUpdateCaptureDependencies_flags_enum
impl Eq for CUstreamUpdateCaptureDependencies_flags_enum
impl StructuralPartialEq for CUstreamUpdateCaptureDependencies_flags_enum
Auto Trait Implementations§
impl Freeze for CUstreamUpdateCaptureDependencies_flags_enum
impl RefUnwindSafe for CUstreamUpdateCaptureDependencies_flags_enum
impl Send for CUstreamUpdateCaptureDependencies_flags_enum
impl Sync for CUstreamUpdateCaptureDependencies_flags_enum
impl Unpin for CUstreamUpdateCaptureDependencies_flags_enum
impl UnwindSafe for CUstreamUpdateCaptureDependencies_flags_enum
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