Enum wgpu::core::command::ClearError
source · #[non_exhaustive]pub enum ClearError {
Show 14 variants
MissingClearTextureFeature,
InvalidCommandEncoder(Id<CommandBuffer<Api>>),
InvalidDevice(Id<Device<Api>>),
InvalidBuffer(Id<Buffer<Api>>),
InvalidTexture(Id<Texture<Api>>),
NoValidTextureClearMode(Id<Texture<Api>>),
UnalignedFillSize(u64),
UnalignedBufferOffset(u64),
BufferOverrun {
start_offset: u64,
end_offset: u64,
buffer_size: u64,
},
MissingCopyDstUsageFlag(Option<Id<Buffer<Api>>>, Option<Id<Texture<Api>>>),
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(Id<CommandBuffer<Api>>)
InvalidDevice(Id<Device<Api>>)
InvalidBuffer(Id<Buffer<Api>>)
InvalidTexture(Id<Texture<Api>>)
NoValidTextureClearMode(Id<Texture<Api>>)
UnalignedFillSize(u64)
UnalignedBufferOffset(u64)
BufferOverrun
MissingCopyDstUsageFlag(Option<Id<Buffer<Api>>>, Option<Id<Texture<Api>>>)
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) -> QueueWriteError
fn from(source: ClearError) -> QueueWriteError
Converts to this type from the input type.
source§impl From<ClearError> for TransferError
impl From<ClearError> for TransferError
source§fn from(source: ClearError) -> TransferError
fn from(source: ClearError) -> TransferError
Converts to this type from the input type.
source§impl From<DeviceError> for ClearError
impl From<DeviceError> for ClearError
source§fn from(source: DeviceError) -> ClearError
fn from(source: DeviceError) -> ClearError
Converts to this type from the input type.
Auto Trait Implementations§
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