Struct wgpu::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: TextureUsagesValid bits for TextureDescriptor::Usage provided for format creation.
flags: TextureFormatFeatureFlagsAdditional 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 StructuralEq for TextureFormatFeatures
impl StructuralPartialEq for TextureFormatFeatures
Auto Trait Implementations§
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
source§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Compare self to 
key and return true if they are equal.