Enum wgpu_hal::DeviceError
source · pub enum DeviceError {
OutOfMemory,
Lost,
ResourceCreationFailed,
}
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<AllocationError> for DeviceError
impl From<AllocationError> for DeviceError
source§fn from(error: AllocationError) -> Self
fn from(error: AllocationError) -> Self
Converts to this type from the input type.
source§impl From<AllocationError> for DeviceError
impl From<AllocationError> for DeviceError
source§fn from(error: AllocationError) -> Self
fn from(error: AllocationError) -> Self
Converts to this type from the input type.
source§impl From<DeviceError> for PipelineError
impl From<DeviceError> for PipelineError
source§fn from(source: DeviceError) -> Self
fn from(source: DeviceError) -> Self
Converts to this type from the input type.
source§impl From<DeviceError> for ShaderError
impl From<DeviceError> for ShaderError
source§fn from(source: DeviceError) -> Self
fn from(source: 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<MapError> for DeviceError
impl From<MapError> for DeviceError
source§impl From<Result> for DeviceError
impl From<Result> for DeviceError
source§impl PartialEq for DeviceError
impl PartialEq for DeviceError
source§fn eq(&self, other: &DeviceError) -> bool
fn eq(&self, other: &DeviceError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for DeviceError
impl StructuralPartialEq for DeviceError
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
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.