Enum coaster::frameworks::cuda::DriverError
source · pub enum DriverError {
Show 57 variants
InvalidValue(&'static str),
OutOfMemory(&'static str),
NotInitialized(&'static str),
Deinitialized(&'static str),
ProfilerDisabled(&'static str),
ProfilerNotInitialized(&'static str),
ProfilerAlreadyStarted(&'static str),
ProfilerAlreadyStopped(&'static str),
NoDevice(&'static str),
InvalidDevice(&'static str),
InvalidImage(&'static str),
InvalidContext(&'static str),
ContextAlreadyCurrent(&'static str),
MapFailed(&'static str),
UnmapFailed(&'static str),
ArrayIsMapped(&'static str),
AlreadyMapped(&'static str),
NoBinaryForGpu(&'static str),
AlreadyAquired(&'static str),
NotMapped(&'static str),
NotMappedAsArray(&'static str),
NotMappedAsPointer(&'static str),
EccUncorrectable(&'static str),
UnsupportedLimit(&'static str),
ContextAlreadyInUse(&'static str),
PeerAccessUnsupported(&'static str),
InvalidPtx(&'static str),
InvalidGraphicsContent(&'static str),
InvalidSource(&'static str),
FileNotFound(&'static str),
SharedObjectSymbolNotFound(&'static str),
SharedObjectInitFailed(&'static str),
OperatingSystem(&'static str),
InvalidHandle(&'static str),
NotFound(&'static str),
NotReady(&'static str),
IllegalAddress(&'static str),
LaunchOutOfResources(&'static str),
LaunchTimeout(&'static str),
LauncIncompatibleTexturing(&'static str),
PeerAccessAlreadyEnabled(&'static str),
PeerAccessNotEnabled(&'static str),
PrimaryContextActive(&'static str),
ContextIsDestroyed(&'static str),
Assert(&'static str),
TooManyPeers(&'static str),
HostMemoryAlreadyRegistered(&'static str),
HostMemoryNotRegistered(&'static str),
HardwareStackError(&'static str),
IllegalInstruction(&'static str),
MisalignedAddress(&'static str),
InvalidAddressSpace(&'static str),
InvalidPc(&'static str),
LaunchFailed(&'static str),
NotPermitted(&'static str),
NotSupported(&'static str),
Unknown(&'static str, u64),
}
Expand description
OpenCL device errors
Variants§
InvalidValue(&'static str)
OutOfMemory(&'static str)
NotInitialized(&'static str)
Deinitialized(&'static str)
ProfilerDisabled(&'static str)
ProfilerNotInitialized(&'static str)
ProfilerAlreadyStarted(&'static str)
ProfilerAlreadyStopped(&'static str)
NoDevice(&'static str)
InvalidDevice(&'static str)
InvalidImage(&'static str)
InvalidContext(&'static str)
ContextAlreadyCurrent(&'static str)
MapFailed(&'static str)
UnmapFailed(&'static str)
ArrayIsMapped(&'static str)
AlreadyMapped(&'static str)
NoBinaryForGpu(&'static str)
AlreadyAquired(&'static str)
NotMapped(&'static str)
NotMappedAsArray(&'static str)
NotMappedAsPointer(&'static str)
EccUncorrectable(&'static str)
UnsupportedLimit(&'static str)
ContextAlreadyInUse(&'static str)
PeerAccessUnsupported(&'static str)
InvalidPtx(&'static str)
InvalidGraphicsContent(&'static str)
InvalidSource(&'static str)
FileNotFound(&'static str)
OperatingSystem(&'static str)
InvalidHandle(&'static str)
NotFound(&'static str)
NotReady(&'static str)
IllegalAddress(&'static str)
LaunchOutOfResources(&'static str)
LaunchTimeout(&'static str)
LauncIncompatibleTexturing(&'static str)
PeerAccessAlreadyEnabled(&'static str)
PeerAccessNotEnabled(&'static str)
PrimaryContextActive(&'static str)
ContextIsDestroyed(&'static str)
Assert(&'static str)
TooManyPeers(&'static str)
HostMemoryAlreadyRegistered(&'static str)
HostMemoryNotRegistered(&'static str)
HardwareStackError(&'static str)
IllegalInstruction(&'static str)
MisalignedAddress(&'static str)
InvalidAddressSpace(&'static str)
InvalidPc(&'static str)
LaunchFailed(&'static str)
NotPermitted(&'static str)
NotSupported(&'static str)
Unknown(&'static str, u64)
Trait Implementations§
source§impl Error for Error
impl Error for Error
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl PartialEq for Error
impl PartialEq for Error
impl Copy for Error
impl Eq for Error
impl StructuralPartialEq for Error
Auto Trait Implementations§
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
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