Enum wgpu_core::device::DeviceError
source · #[non_exhaustive]pub enum DeviceError {
Invalid,
Lost,
OutOfMemory,
ResourceCreationFailed,
InvalidQueueId,
WrongDevice,
}
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.
Trait Implementations§
source§impl Clone for DeviceError
impl Clone for DeviceError
source§fn clone(&self) -> DeviceError
fn clone(&self) -> DeviceError
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 DeviceError
impl Debug for DeviceError
source§impl Display for DeviceError
impl Display for DeviceError
source§impl Error for DeviceError
impl Error for DeviceError
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 From<DeviceError> for BufferAccessError
impl From<DeviceError> for BufferAccessError
source§fn from(source: DeviceError) -> Self
fn from(source: DeviceError) -> Self
Converts to this type from the input type.
source§impl From<DeviceError> for ClearError
impl From<DeviceError> for ClearError
source§fn from(source: DeviceError) -> Self
fn from(source: DeviceError) -> Self
Converts to this type from the input type.
source§impl From<DeviceError> for CommandEncoderError
impl From<DeviceError> for CommandEncoderError
source§fn from(source: DeviceError) -> Self
fn from(source: DeviceError) -> Self
Converts to this type from the input type.
source§impl From<DeviceError> for ComputePassErrorInner
impl From<DeviceError> for ComputePassErrorInner
source§fn from(source: DeviceError) -> Self
fn from(source: DeviceError) -> Self
Converts to this type from the input type.
source§impl From<DeviceError> for ConfigureSurfaceError
impl From<DeviceError> for ConfigureSurfaceError
source§fn from(source: DeviceError) -> Self
fn from(source: DeviceError) -> Self
Converts to this type from the input type.
source§impl From<DeviceError> for CopyError
impl From<DeviceError> for CopyError
source§fn from(err: DeviceError) -> Self
fn from(err: DeviceError) -> Self
Converts to this type from the input type.
source§impl From<DeviceError> for CreateBindGroupError
impl From<DeviceError> for CreateBindGroupError
source§fn from(source: DeviceError) -> Self
fn from(source: DeviceError) -> Self
Converts to this type from the input type.
source§impl From<DeviceError> for CreateBindGroupLayoutError
impl From<DeviceError> for CreateBindGroupLayoutError
source§fn from(source: DeviceError) -> Self
fn from(source: DeviceError) -> Self
Converts to this type from the input type.
source§impl From<DeviceError> for CreateBufferError
impl From<DeviceError> for CreateBufferError
source§fn from(source: DeviceError) -> Self
fn from(source: DeviceError) -> Self
Converts to this type from the input type.
source§impl From<DeviceError> for CreateComputePipelineError
impl From<DeviceError> for CreateComputePipelineError
source§fn from(source: DeviceError) -> Self
fn from(source: DeviceError) -> Self
Converts to this type from the input type.
source§impl From<DeviceError> for CreateDeviceError
impl From<DeviceError> for CreateDeviceError
source§fn from(source: DeviceError) -> Self
fn from(source: DeviceError) -> Self
Converts to this type from the input type.
source§impl From<DeviceError> for CreatePipelineLayoutError
impl From<DeviceError> for CreatePipelineLayoutError
source§fn from(source: DeviceError) -> Self
fn from(source: DeviceError) -> Self
Converts to this type from the input type.
source§impl From<DeviceError> for CreateQuerySetError
impl From<DeviceError> for CreateQuerySetError
source§fn from(source: DeviceError) -> Self
fn from(source: DeviceError) -> Self
Converts to this type from the input type.
source§impl From<DeviceError> for CreateRenderPipelineError
impl From<DeviceError> for CreateRenderPipelineError
source§fn from(source: DeviceError) -> Self
fn from(source: DeviceError) -> Self
Converts to this type from the input type.
source§impl From<DeviceError> for CreateSamplerError
impl From<DeviceError> for CreateSamplerError
source§fn from(source: DeviceError) -> Self
fn from(source: DeviceError) -> Self
Converts to this type from the input type.
source§impl From<DeviceError> for CreateShaderModuleError
impl From<DeviceError> for CreateShaderModuleError
source§fn from(source: DeviceError) -> Self
fn from(source: DeviceError) -> Self
Converts to this type from the input type.
source§impl From<DeviceError> for CreateTextureError
impl From<DeviceError> for CreateTextureError
source§fn from(source: DeviceError) -> Self
fn from(source: DeviceError) -> Self
Converts to this type from the input type.
source§impl From<DeviceError> for DeviceError
impl From<DeviceError> for DeviceError
source§fn from(error: DeviceError) -> Self
fn from(error: DeviceError) -> Self
Converts to this type from the input type.
source§impl From<DeviceError> for QueryError
impl From<DeviceError> for QueryError
source§fn from(source: DeviceError) -> Self
fn from(source: DeviceError) -> Self
Converts to this type from the input type.
source§impl From<DeviceError> for QueueSubmitError
impl From<DeviceError> for QueueSubmitError
source§fn from(source: DeviceError) -> Self
fn from(source: DeviceError) -> Self
Converts to this type from the input type.
source§impl From<DeviceError> for QueueWriteError
impl From<DeviceError> for QueueWriteError
source§fn from(source: DeviceError) -> Self
fn from(source: DeviceError) -> Self
Converts to this type from the input type.
source§impl From<DeviceError> for RenderPassErrorInner
impl From<DeviceError> for RenderPassErrorInner
source§fn from(error: DeviceError) -> Self
fn from(error: DeviceError) -> Self
Converts to this type from the input type.
source§impl From<DeviceError> for SurfaceError
impl From<DeviceError> for SurfaceError
source§fn from(source: DeviceError) -> Self
fn from(source: DeviceError) -> Self
Converts to this type from the input type.
source§impl From<DeviceError> for WaitIdleError
impl From<DeviceError> for WaitIdleError
source§fn from(source: DeviceError) -> Self
fn from(source: DeviceError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DeviceError
impl RefUnwindSafe for DeviceError
impl Send for DeviceError
impl Sync for DeviceError
impl Unpin for DeviceError
impl UnwindSafe for DeviceError
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