Enum wgpu_core::resource::CreateTextureError
source · pub enum CreateTextureError {
Device(DeviceError),
CannotCopyD24Plus,
EmptyUsage,
InvalidDimension(TextureDimensionError),
InvalidMipLevelCount(u32),
InvalidUsages(TextureUsage, TextureFormat),
MissingFeature(Features, TextureFormat),
}Variants§
Device(DeviceError)
CannotCopyD24Plus
EmptyUsage
InvalidDimension(TextureDimensionError)
InvalidMipLevelCount(u32)
InvalidUsages(TextureUsage, TextureFormat)
MissingFeature(Features, TextureFormat)
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<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<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.