#[repr(transparent)]pub struct cudaDriverEntryPointQueryResult(pub c_uint);
Expand description
Enum for status from obtaining driver entry points, used with ::cudaApiGetDriverEntryPoint
Tuple Fields§
§0: c_uint
Implementations§
Source§impl cudaDriverEntryPointQueryResult
impl cudaDriverEntryPointQueryResult
Sourcepub const cudaDriverEntryPointSuccess: cudaDriverEntryPointQueryResult
pub const cudaDriverEntryPointSuccess: cudaDriverEntryPointQueryResult
< Search for symbol found a match
Source§impl cudaDriverEntryPointQueryResult
impl cudaDriverEntryPointQueryResult
Sourcepub const cudaDriverEntryPointSymbolNotFound: cudaDriverEntryPointQueryResult
pub const cudaDriverEntryPointSymbolNotFound: cudaDriverEntryPointQueryResult
< Search for symbol was not found
Source§impl cudaDriverEntryPointQueryResult
impl cudaDriverEntryPointQueryResult
Sourcepub const cudaDriverEntryPointVersionNotSufficent: cudaDriverEntryPointQueryResult
pub const cudaDriverEntryPointVersionNotSufficent: cudaDriverEntryPointQueryResult
< Search for symbol was found but version wasn’t great enough
Trait Implementations§
Source§impl Clone for cudaDriverEntryPointQueryResult
impl Clone for cudaDriverEntryPointQueryResult
Source§fn clone(&self) -> cudaDriverEntryPointQueryResult
fn clone(&self) -> cudaDriverEntryPointQueryResult
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 PartialEq for cudaDriverEntryPointQueryResult
impl PartialEq for cudaDriverEntryPointQueryResult
Source§fn eq(&self, other: &cudaDriverEntryPointQueryResult) -> bool
fn eq(&self, other: &cudaDriverEntryPointQueryResult) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for cudaDriverEntryPointQueryResult
impl Eq for cudaDriverEntryPointQueryResult
impl StructuralPartialEq for cudaDriverEntryPointQueryResult
Auto Trait Implementations§
impl Freeze for cudaDriverEntryPointQueryResult
impl RefUnwindSafe for cudaDriverEntryPointQueryResult
impl Send for cudaDriverEntryPointQueryResult
impl Sync for cudaDriverEntryPointQueryResult
impl Unpin for cudaDriverEntryPointQueryResult
impl UnwindSafe for cudaDriverEntryPointQueryResult
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