Enum wgpu_core::resource::CreateTextureError
source · #[non_exhaustive]pub enum CreateTextureError {
Show 16 variants
Device(DeviceError),
CreateTextureView(CreateTextureViewError),
InvalidUsage(TextureUsages),
InvalidDimension(TextureDimensionError),
InvalidDepthDimension(TextureDimension, TextureFormat),
InvalidCompressedDimension(TextureDimension, TextureFormat),
InvalidMipLevelCount {
requested: u32,
maximum: u32,
},
InvalidFormatUsages(TextureUsages, TextureFormat, bool),
InvalidViewFormat(TextureFormat, TextureFormat),
InvalidDimensionUsages(TextureUsages, TextureDimension),
InvalidMultisampledStorageBinding,
InvalidMultisampledFormat(TextureFormat),
InvalidSampleCount(u32, TextureFormat, Vec<u32>, Vec<u32>),
MultisampledNotRenderAttachment,
MissingFeatures(TextureFormat, MissingFeatures),
MissingDownlevelFlags(MissingDownlevelFlags),
}
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.
Device(DeviceError)
CreateTextureView(CreateTextureViewError)
InvalidUsage(TextureUsages)
InvalidDimension(TextureDimensionError)
InvalidDepthDimension(TextureDimension, TextureFormat)
InvalidCompressedDimension(TextureDimension, TextureFormat)
InvalidMipLevelCount
InvalidFormatUsages(TextureUsages, TextureFormat, bool)
InvalidViewFormat(TextureFormat, TextureFormat)
InvalidDimensionUsages(TextureUsages, TextureDimension)
InvalidMultisampledStorageBinding
InvalidMultisampledFormat(TextureFormat)
InvalidSampleCount(u32, TextureFormat, Vec<u32>, Vec<u32>)
MultisampledNotRenderAttachment
MissingFeatures(TextureFormat, MissingFeatures)
MissingDownlevelFlags(MissingDownlevelFlags)
Trait Implementations§
source§impl Clone for CreateTextureError
impl Clone for CreateTextureError
source§fn clone(&self) -> CreateTextureError
fn clone(&self) -> CreateTextureError
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 CreateTextureError
impl Debug for CreateTextureError
source§impl Display for CreateTextureError
impl Display for CreateTextureError
source§impl Error for CreateTextureError
impl Error for CreateTextureError
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<CreateTextureViewError> for CreateTextureError
impl From<CreateTextureViewError> for CreateTextureError
source§fn from(source: CreateTextureViewError) -> Self
fn from(source: CreateTextureViewError) -> 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<MissingDownlevelFlags> for CreateTextureError
impl From<MissingDownlevelFlags> for CreateTextureError
source§fn from(source: MissingDownlevelFlags) -> Self
fn from(source: MissingDownlevelFlags) -> Self
Converts to this type from the input type.
source§impl From<TextureDimensionError> for CreateTextureError
impl From<TextureDimensionError> for CreateTextureError
source§fn from(source: TextureDimensionError) -> Self
fn from(source: TextureDimensionError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CreateTextureError
impl RefUnwindSafe for CreateTextureError
impl Send for CreateTextureError
impl Sync for CreateTextureError
impl Unpin for CreateTextureError
impl UnwindSafe for CreateTextureError
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