pub enum CreationError {
OutOfMemory(OutOfMemory),
InitializationFailed,
MissingFeature,
TooManyObjects,
DeviceLost,
}
Expand description
Device creation errors during open
.
Variants§
OutOfMemory(OutOfMemory)
Out of either host or device memory.
InitializationFailed
Device initialization failed due to implementation specific errors.
MissingFeature
At least one of the user requested features if not supported by the physical device.
Use features
for checking the supported features.
TooManyObjects
Too many logical devices have been created from this physical device.
The implementation may only support one logical device for each physical device or lacks resources to allocate a new device.
DeviceLost
The logical or physical device are lost during the device creation process.
This may be caused by hardware failure, physical device removal, power outage, etc.
Trait Implementations§
Source§impl Clone for CreationError
impl Clone for CreationError
Source§fn clone(&self) -> CreationError
fn clone(&self) -> CreationError
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 Debug for CreationError
impl Debug for CreationError
Source§impl Display for CreationError
impl Display for CreationError
Source§impl Error for CreationError
impl Error for CreationError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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 From<OutOfMemory> for CreationError
impl From<OutOfMemory> for CreationError
Source§fn from(source: OutOfMemory) -> Self
fn from(source: OutOfMemory) -> Self
Converts to this type from the input type.
Source§impl PartialEq for CreationError
impl PartialEq for CreationError
impl StructuralPartialEq for CreationError
Auto Trait Implementations§
impl Freeze for CreationError
impl RefUnwindSafe for CreationError
impl Send for CreationError
impl Sync for CreationError
impl Unpin for CreationError
impl UnwindSafe for CreationError
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