Enum wgpu_core::command::ClearError
source · #[non_exhaustive]pub enum ClearError {
Show 15 variants
MissingClearTextureFeature,
InvalidCommandEncoder(CommandEncoderId),
InvalidDevice(DeviceId),
InvalidBuffer(BufferId),
InvalidTexture(TextureId),
NoValidTextureClearMode(TextureId),
UnalignedFillSize(BufferAddress),
UnalignedBufferOffset(BufferAddress),
OffsetPlusSizeExceeds64BitBounds {
start_offset: BufferAddress,
requested_size: BufferAddress,
},
BufferOverrun {
start_offset: BufferAddress,
end_offset: BufferAddress,
buffer_size: BufferAddress,
},
MissingCopyDstUsageFlag(Option<BufferId>, Option<TextureId>),
MissingTextureAspect {
texture_format: TextureFormat,
subresource_range_aspects: TextureAspect,
},
InvalidTextureLevelRange {
texture_level_range: Range<u32>,
subresource_base_mip_level: u32,
subresource_mip_level_count: Option<u32>,
},
InvalidTextureLayerRange {
texture_layer_range: Range<u32>,
subresource_base_array_layer: u32,
subresource_array_layer_count: Option<u32>,
},
Device(DeviceError),
}
Expand description
Error encountered while attempting a clear.
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.
MissingClearTextureFeature
InvalidCommandEncoder(CommandEncoderId)
InvalidDevice(DeviceId)
InvalidBuffer(BufferId)
InvalidTexture(TextureId)
NoValidTextureClearMode(TextureId)
UnalignedFillSize(BufferAddress)
UnalignedBufferOffset(BufferAddress)
OffsetPlusSizeExceeds64BitBounds
BufferOverrun
MissingCopyDstUsageFlag(Option<BufferId>, Option<TextureId>)
MissingTextureAspect
InvalidTextureLevelRange
Fields
InvalidTextureLayerRange
Fields
Device(DeviceError)
Trait Implementations§
source§impl Clone for ClearError
impl Clone for ClearError
source§fn clone(&self) -> ClearError
fn clone(&self) -> ClearError
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 ClearError
impl Debug for ClearError
source§impl Display for ClearError
impl Display for ClearError
source§impl Error for ClearError
impl Error for ClearError
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<ClearError> for TransferError
impl From<ClearError> for TransferError
source§fn from(source: ClearError) -> Self
fn from(source: ClearError) -> 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.
Auto Trait Implementations§
impl Freeze for ClearError
impl RefUnwindSafe for ClearError
impl Send for ClearError
impl Sync for ClearError
impl Unpin for ClearError
impl UnwindSafe for ClearError
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