Struct wgpu_types::TextureFormatFeatures
source · pub struct TextureFormatFeatures {
pub allowed_usages: TextureUsages,
pub flags: TextureFormatFeatureFlags,
}
Expand description
Features supported by a given texture format
Features are defined by WebGPU specification unless Features::TEXTURE_ADAPTER_SPECIFIC_FORMAT_FEATURES
is enabled.
Fields§
§allowed_usages: TextureUsages
Valid bits for TextureDescriptor::Usage
provided for format creation.
flags: TextureFormatFeatureFlags
Additional property flags for the format.
Trait Implementations§
source§impl Clone for TextureFormatFeatures
impl Clone for TextureFormatFeatures
source§fn clone(&self) -> TextureFormatFeatures
fn clone(&self) -> TextureFormatFeatures
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 TextureFormatFeatures
impl Debug for TextureFormatFeatures
source§impl Hash for TextureFormatFeatures
impl Hash for TextureFormatFeatures
source§impl PartialEq for TextureFormatFeatures
impl PartialEq for TextureFormatFeatures
source§fn eq(&self, other: &TextureFormatFeatures) -> bool
fn eq(&self, other: &TextureFormatFeatures) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for TextureFormatFeatures
impl Eq for TextureFormatFeatures
impl StructuralPartialEq for TextureFormatFeatures
Auto Trait Implementations§
impl Freeze for TextureFormatFeatures
impl RefUnwindSafe for TextureFormatFeatures
impl Send for TextureFormatFeatures
impl Sync for TextureFormatFeatures
impl Unpin for TextureFormatFeatures
impl UnwindSafe for TextureFormatFeatures
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