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
sourceimpl Clone for TextureFormatFeatures
impl Clone for TextureFormatFeatures
sourcefn clone(&self) -> TextureFormatFeatures
fn clone(&self) -> TextureFormatFeatures
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for TextureFormatFeatures
impl Debug for TextureFormatFeatures
sourceimpl Hash for TextureFormatFeatures
impl Hash for TextureFormatFeatures
sourceimpl PartialEq<TextureFormatFeatures> for TextureFormatFeatures
impl PartialEq<TextureFormatFeatures> for TextureFormatFeatures
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &TextureFormatFeatures) -> bool
fn ne(&self, other: &TextureFormatFeatures) -> bool
This method tests for !=
.
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more