#[repr(u32)]pub enum cudaGraphExecUpdateResult {
cudaGraphExecUpdateSuccess = 0,
cudaGraphExecUpdateError = 1,
cudaGraphExecUpdateErrorTopologyChanged = 2,
cudaGraphExecUpdateErrorNodeTypeChanged = 3,
cudaGraphExecUpdateErrorFunctionChanged = 4,
cudaGraphExecUpdateErrorParametersChanged = 5,
cudaGraphExecUpdateErrorNotSupported = 6,
}
Variants§
cudaGraphExecUpdateSuccess = 0
cudaGraphExecUpdateError = 1
cudaGraphExecUpdateErrorTopologyChanged = 2
cudaGraphExecUpdateErrorNodeTypeChanged = 3
cudaGraphExecUpdateErrorFunctionChanged = 4
cudaGraphExecUpdateErrorParametersChanged = 5
cudaGraphExecUpdateErrorNotSupported = 6
Trait Implementations§
Source§impl Clone for cudaGraphExecUpdateResult
impl Clone for cudaGraphExecUpdateResult
Source§fn clone(&self) -> cudaGraphExecUpdateResult
fn clone(&self) -> cudaGraphExecUpdateResult
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 cudaGraphExecUpdateResult
impl Debug for cudaGraphExecUpdateResult
Source§impl Hash for cudaGraphExecUpdateResult
impl Hash for cudaGraphExecUpdateResult
Source§impl Ord for cudaGraphExecUpdateResult
impl Ord for cudaGraphExecUpdateResult
Source§fn cmp(&self, other: &cudaGraphExecUpdateResult) -> Ordering
fn cmp(&self, other: &cudaGraphExecUpdateResult) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for cudaGraphExecUpdateResult
impl PartialOrd for cudaGraphExecUpdateResult
impl Copy for cudaGraphExecUpdateResult
impl Eq for cudaGraphExecUpdateResult
impl StructuralPartialEq for cudaGraphExecUpdateResult
Auto Trait Implementations§
impl Freeze for cudaGraphExecUpdateResult
impl RefUnwindSafe for cudaGraphExecUpdateResult
impl Send for cudaGraphExecUpdateResult
impl Sync for cudaGraphExecUpdateResult
impl Unpin for cudaGraphExecUpdateResult
impl UnwindSafe for cudaGraphExecUpdateResult
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