Enum wgpu_core::device::queue::QueueWriteError
source · #[non_exhaustive]pub enum QueueWriteError {
DeviceMismatch {
queue_device_id: DeviceId,
target_device_id: DeviceId,
},
Queue(DeviceError),
Transfer(TransferError),
MemoryInitFailure(ClearError),
}
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 QueueWriteError
impl Clone for QueueWriteError
source§fn clone(&self) -> QueueWriteError
fn clone(&self) -> QueueWriteError
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 QueueWriteError
impl Debug for QueueWriteError
source§impl Display for QueueWriteError
impl Display for QueueWriteError
source§impl Error for QueueWriteError
impl Error for QueueWriteError
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<ClearError> for QueueWriteError
impl From<ClearError> for QueueWriteError
source§fn from(source: ClearError) -> Self
fn from(source: ClearError) -> 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<TransferError> for QueueWriteError
impl From<TransferError> for QueueWriteError
source§fn from(source: TransferError) -> Self
fn from(source: TransferError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for QueueWriteError
impl RefUnwindSafe for QueueWriteError
impl Send for QueueWriteError
impl Sync for QueueWriteError
impl Unpin for QueueWriteError
impl UnwindSafe for QueueWriteError
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