wgpu

Struct FeaturesWGPU

source
#[repr(transparent)]
pub struct FeaturesWGPU(<FeaturesWGPU as PublicFlags>::Internal);
Expand description

Features that are not guaranteed to be supported.

These are extension features supported by wgpu when targeting native. For all features see Features

If you want to use a feature, you need to first verify that the adapter supports the feature. If the adapter does not support the feature, requesting a device with it enabled will panic.

Corresponds to WebGPU GPUFeatureName.

Tuple Fields§

§0: <FeaturesWGPU as PublicFlags>::Internal

Implementations§

source§

impl FeaturesWGPU

source

pub const SHADER_FLOAT32_ATOMIC: FeaturesWGPU = _

Allows shaders to use f32 atomic load, store, add, sub, and exchange.

Supported platforms:

This is a native only feature.

source

pub const TEXTURE_FORMAT_16BIT_NORM: FeaturesWGPU = _

Enables normalized 16-bit texture formats.

Supported platforms:

  • Vulkan
  • DX12
  • Metal

This is a native only feature.

source

pub const TEXTURE_COMPRESSION_ASTC_HDR: FeaturesWGPU = _

Enables ASTC HDR family of compressed textures.

Compressed textures sacrifice some quality in exchange for significantly reduced bandwidth usage.

Support for this feature guarantees availability of [TextureUsages::COPY_SRC | TextureUsages::COPY_DST | TextureUsages::TEXTURE_BINDING] for ASTC formats with the HDR channel type. Features::TEXTURE_ADAPTER_SPECIFIC_FORMAT_FEATURES may enable additional usages.

Supported Platforms:

  • Metal
  • Vulkan
  • OpenGL

This is a native only feature.

source

pub const TEXTURE_ADAPTER_SPECIFIC_FORMAT_FEATURES: FeaturesWGPU = _

Enables device specific texture format features.

See TextureFormatFeatures for a listing of the features in question.

By default only texture format properties as defined by the WebGPU specification are allowed. Enabling this feature flag extends the features of each format to the ones supported by the current device. Note that without this flag, read/write storage access is not allowed at all.

This extension does not enable additional formats.

This is a native only feature.

source

pub const PIPELINE_STATISTICS_QUERY: FeaturesWGPU = _

Enables use of Pipeline Statistics Queries. These queries tell the count of various operations performed between the start and stop call. Call RenderPass::begin_pipeline_statistics_query to start a query, then call RenderPass::end_pipeline_statistics_query to stop one.

They must be resolved using CommandEncoder::resolve_query_set into a buffer. The rules on how these resolve into buffers are detailed in the documentation for PipelineStatisticsTypes.

Supported Platforms:

  • Vulkan
  • DX12

This is a native only feature with a proposal for the web.

source

pub const TIMESTAMP_QUERY_INSIDE_ENCODERS: FeaturesWGPU = _

Allows for timestamp queries directly on command encoders.

Implies Features::TIMESTAMP_QUERY is supported.

Additionally allows for timestamp writes on command encoders using CommandEncoder::write_timestamp.

Supported platforms:

  • Vulkan
  • DX12
  • Metal

This is a native only feature.

source

pub const TIMESTAMP_QUERY_INSIDE_PASSES: FeaturesWGPU = _

Allows for timestamp queries directly on command encoders.

Implies Features::TIMESTAMP_QUERY & Features::TIMESTAMP_QUERY_INSIDE_ENCODERS is supported.

Additionally allows for timestamp queries to be used inside render & compute passes using:

Supported platforms:

  • Vulkan
  • DX12
  • Metal (AMD & Intel, not Apple GPUs)

This is generally not available on tile-based rasterization GPUs.

This is a native only feature with a proposal for the web.

source

pub const MAPPABLE_PRIMARY_BUFFERS: FeaturesWGPU = _

Webgpu only allows the MAP_READ and MAP_WRITE buffer usage to be matched with COPY_DST and COPY_SRC respectively. This removes this requirement.

This is only beneficial on systems that share memory between CPU and GPU. If enabled on a system that doesn’t, this can severely hinder performance. Only use if you understand the consequences.

Supported platforms:

  • Vulkan
  • DX12
  • Metal

This is a native only feature.

source

pub const TEXTURE_BINDING_ARRAY: FeaturesWGPU = _

Allows the user to create uniform arrays of textures in shaders:

ex.

  • var textures: binding_array<texture_2d<f32>, 10> (WGSL)
  • uniform texture2D textures[10] (GLSL)

If Features::STORAGE_RESOURCE_BINDING_ARRAY is supported as well as this, the user may also create uniform arrays of storage textures.

ex.

  • var textures: array<texture_storage_2d<r32float, write>, 10> (WGSL)
  • uniform image2D textures[10] (GLSL)

This capability allows them to exist and to be indexed by dynamically uniform values.

Supported platforms:

  • DX12
  • Metal (with MSL 2.0+ on macOS 10.13+)
  • Vulkan

This is a native only feature.

source

pub const BUFFER_BINDING_ARRAY: FeaturesWGPU = _

Allows the user to create arrays of buffers in shaders:

ex.

  • var<uniform> buffer_array: array<MyBuffer, 10> (WGSL)
  • uniform myBuffer { ... } buffer_array[10] (GLSL)

This capability allows them to exist and to be indexed by dynamically uniform values.

If Features::STORAGE_RESOURCE_BINDING_ARRAY is supported as well as this, the user may also create arrays of storage buffers.

ex.

  • var<storage> buffer_array: array<MyBuffer, 10> (WGSL)
  • buffer myBuffer { ... } buffer_array[10] (GLSL)

Supported platforms:

  • Vulkan

This is a native only feature.

source

pub const STORAGE_RESOURCE_BINDING_ARRAY: FeaturesWGPU = _

Allows the user to create uniform arrays of storage buffers or textures in shaders, if resp. Features::BUFFER_BINDING_ARRAY or Features::TEXTURE_BINDING_ARRAY is supported.

This capability allows them to exist and to be indexed by dynamically uniform values.

Supported platforms:

  • Metal (with MSL 2.2+ on macOS 10.13+)
  • Vulkan

This is a native only feature.

source

pub const SAMPLED_TEXTURE_AND_STORAGE_BUFFER_ARRAY_NON_UNIFORM_INDEXING: FeaturesWGPU = _

Allows shaders to index sampled texture and storage buffer resource arrays with dynamically non-uniform values:

ex. texture_array[vertex_data]

In order to use this capability, the corresponding GLSL extension must be enabled like so:

#extension GL_EXT_nonuniform_qualifier : require

and then used either as nonuniformEXT qualifier in variable declaration:

ex. layout(location = 0) nonuniformEXT flat in int vertex_data;

or as nonuniformEXT constructor:

ex. texture_array[nonuniformEXT(vertex_data)]

WGSL and HLSL do not need any extension.

Supported platforms:

  • DX12
  • Metal (with MSL 2.0+ on macOS 10.13+)
  • Vulkan 1.2+ (or VK_EXT_descriptor_indexing)’s shaderSampledImageArrayNonUniformIndexing & shaderStorageBufferArrayNonUniformIndexing feature)

This is a native only feature.

source

pub const STORAGE_TEXTURE_ARRAY_NON_UNIFORM_INDEXING: FeaturesWGPU = _

Allows shaders to index storage texture resource arrays with dynamically non-uniform values:

ex. texture_array[vertex_data]

Supported platforms:

  • DX12
  • Metal (with MSL 2.0+ on macOS 10.13+)
  • Vulkan 1.2+ (or VK_EXT_descriptor_indexing)’s shaderStorageTextureArrayNonUniformIndexing feature)

This is a native only feature.

source

pub const PARTIALLY_BOUND_BINDING_ARRAY: FeaturesWGPU = _

Allows the user to create bind groups containing arrays with less bindings than the BindGroupLayout.

Supported platforms:

  • Vulkan
  • DX12

This is a native only feature.

source

pub const MULTI_DRAW_INDIRECT: FeaturesWGPU = _

Allows the user to call RenderPass::multi_draw_indirect and RenderPass::multi_draw_indexed_indirect.

Allows multiple indirect calls to be dispatched from a single buffer.

Natively Supported Platforms:

  • DX12
  • Vulkan

Emulated Platforms:

  • Metal
  • OpenGL
  • WebGPU

Emulation is preformed by looping over the individual indirect draw calls in the backend. This is still significantly faster than enulating it yourself, as wgpu only does draw call validation once.

source

pub const MULTI_DRAW_INDIRECT_COUNT: FeaturesWGPU = _

Allows the user to call RenderPass::multi_draw_indirect_count and RenderPass::multi_draw_indexed_indirect_count.

This allows the use of a buffer containing the actual number of draw calls.

Supported platforms:

  • DX12
  • Vulkan 1.2+ (or VK_KHR_draw_indirect_count)

This is a native only feature.

source

pub const PUSH_CONSTANTS: FeaturesWGPU = _

Allows the use of push constants: small, fast bits of memory that can be updated inside a RenderPass.

Allows the user to call RenderPass::set_push_constants, provide a non-empty array to PipelineLayoutDescriptor, and provide a non-zero limit to Limits::max_push_constant_size.

A block of push constants can be declared in WGSL with var<push_constant>:

struct PushConstants { example: f32, }
var<push_constant> c: PushConstants;

In GLSL, this corresponds to layout(push_constant) uniform Name {..}.

Supported platforms:

  • DX12
  • Vulkan
  • Metal
  • OpenGL (emulated with uniforms)

This is a native only feature.

source

pub const ADDRESS_MODE_CLAMP_TO_ZERO: FeaturesWGPU = _

Allows the use of AddressMode::ClampToBorder with a border color of SamplerBorderColor::Zero.

Supported platforms:

  • DX12
  • Vulkan
  • Metal
  • OpenGL

This is a native only feature.

source

pub const ADDRESS_MODE_CLAMP_TO_BORDER: FeaturesWGPU = _

Allows the use of AddressMode::ClampToBorder with a border color other than SamplerBorderColor::Zero.

Supported platforms:

  • DX12
  • Vulkan
  • Metal (macOS 10.12+ only)
  • OpenGL

This is a native only feature.

source

pub const POLYGON_MODE_LINE: FeaturesWGPU = _

Allows the user to set PolygonMode::Line in PrimitiveState::polygon_mode

This allows drawing polygons/triangles as lines (wireframe) instead of filled

Supported platforms:

  • DX12
  • Vulkan
  • Metal

This is a native only feature.

source

pub const POLYGON_MODE_POINT: FeaturesWGPU = _

Allows the user to set PolygonMode::Point in PrimitiveState::polygon_mode

This allows only drawing the vertices of polygons/triangles instead of filled

Supported platforms:

  • Vulkan

This is a native only feature.

source

pub const CONSERVATIVE_RASTERIZATION: FeaturesWGPU = _

Allows the user to set a overestimation-conservative-rasterization in PrimitiveState::conservative

Processing of degenerate triangles/lines is hardware specific. Only triangles are supported.

Supported platforms:

  • Vulkan

This is a native only feature.

source

pub const VERTEX_WRITABLE_STORAGE: FeaturesWGPU = _

Enables bindings of writable storage buffers and textures visible to vertex shaders.

Note: some (tiled-based) platforms do not support vertex shaders with any side-effects.

Supported Platforms:

  • All

This is a native only feature.

source

pub const CLEAR_TEXTURE: FeaturesWGPU = _

Enables clear to zero for textures.

Supported platforms:

  • All

This is a native only feature.

source

pub const SPIRV_SHADER_PASSTHROUGH: FeaturesWGPU = _

Enables creating shader modules from SPIR-V binary data (unsafe).

SPIR-V data is not parsed or interpreted in any way; you can use wgpu::make_spirv_raw! to check for alignment and magic number when converting from raw bytes.

Supported platforms:

  • Vulkan, in case shader’s requested capabilities and extensions agree with Vulkan implementation.

This is a native only feature.

source

pub const MULTIVIEW: FeaturesWGPU = _

Enables multiview render passes and builtin(view_index) in vertex shaders.

Supported platforms:

  • Vulkan
  • OpenGL (web only)

This is a native only feature.

source

pub const VERTEX_ATTRIBUTE_64BIT: FeaturesWGPU = _

Enables using 64-bit types for vertex attributes.

Requires SHADER_FLOAT64.

Supported Platforms: N/A

This is a native only feature.

source

pub const TEXTURE_ATOMIC: FeaturesWGPU = _

Enables image atomic fetch add, and, xor, or, min, and max for R32Uint and R32Sint textures.

Supported platforms:

  • Vulkan
  • DX12
  • Metal (with MSL 3.1+)

This is a native only feature.

source

pub const TEXTURE_FORMAT_NV12: FeaturesWGPU = _

Allows for creation of textures of format TextureFormat::NV12

Supported platforms:

  • DX12
  • Vulkan

This is a native only feature.

source

pub const EXPERIMENTAL_RAY_TRACING_ACCELERATION_STRUCTURE: FeaturesWGPU = _

THIS IS EXPERIMENTAL: Features enabled by this may have major bugs in them and are expected to be subject to breaking changes, suggestions for the API exposed by this should be posted on the ray-tracing issue

Allows for the creation of ray-tracing acceleration structures. Currently, ray-tracing acceleration structures are only useful when used with Features::EXPERIMENTAL_RAY_QUERY

Supported platforms:

  • Vulkan

This is a native-only feature.

source

pub const EXPERIMENTAL_RAY_QUERY: FeaturesWGPU = _

THIS IS EXPERIMENTAL: Features enabled by this may have major bugs in it and are expected to be subject to breaking changes, suggestions for the API exposed by this should be posted on the ray-tracing issue

Allows for the creation of ray-tracing queries within shaders.

Supported platforms:

  • Vulkan

This is a native-only feature.

source

pub const SHADER_F64: FeaturesWGPU = _

Enables 64-bit floating point types in SPIR-V shaders.

Note: even when supported by GPU hardware, 64-bit floating point operations are frequently between 16 and 64 times slower than equivalent operations on 32-bit floats.

Supported Platforms:

  • Vulkan

This is a native only feature.

source

pub const SHADER_I16: FeaturesWGPU = _

Allows shaders to use i16. Not currently supported in naga, only available through spirv-passthrough.

Supported platforms:

  • Vulkan

This is a native only feature.

source

pub const SHADER_PRIMITIVE_INDEX: FeaturesWGPU = _

Enables builtin(primitive_index) in fragment shaders.

Note: enables geometry processing for pipelines using the builtin. This may come with a significant performance impact on some hardware. Other pipelines are not affected.

Supported platforms:

  • Vulkan
  • DX12
  • Metal (some)
  • OpenGL (some)

This is a native only feature.

source

pub const SHADER_EARLY_DEPTH_TEST: FeaturesWGPU = _

Allows shaders to use the early_depth_test attribute.

Supported platforms:

  • GLES 3.1+

This is a native only feature.

source

pub const DUAL_SOURCE_BLENDING: FeaturesWGPU = _

Allows two outputs from a shader to be used for blending. Note that dual-source blending doesn’t support multiple render targets.

For more info see the OpenGL ES extension GL_EXT_blend_func_extended.

Supported platforms:

  • OpenGL ES (with GL_EXT_blend_func_extended)
  • Metal (with MSL 1.2+)
  • Vulkan (with dualSrcBlend)
  • DX12
source

pub const SHADER_INT64: FeaturesWGPU = _

Allows shaders to use i64 and u64.

Supported platforms:

  • Vulkan
  • DX12 (DXC only)
  • Metal (with MSL 2.3+)

This is a native only feature.

source

pub const SUBGROUP: FeaturesWGPU = _

Allows compute and fragment shaders to use the subgroup operation built-ins

Supported Platforms:

  • Vulkan
  • DX12
  • Metal

This is a native only feature.

source

pub const SUBGROUP_VERTEX: FeaturesWGPU = _

Allows vertex shaders to use the subgroup operation built-ins

Supported Platforms:

  • Vulkan

This is a native only feature.

source

pub const SUBGROUP_BARRIER: FeaturesWGPU = _

Allows shaders to use the subgroup barrier

Supported Platforms:

  • Vulkan
  • Metal

This is a native only feature.

source

pub const PIPELINE_CACHE: FeaturesWGPU = _

Allows the use of pipeline cache objects

Supported platforms:

  • Vulkan

Unimplemented Platforms:

  • DX12
  • Metal
source

pub const SHADER_INT64_ATOMIC_MIN_MAX: FeaturesWGPU = _

Allows shaders to use i64 and u64 atomic min and max.

Supported platforms:

  • Vulkan (with VK_KHR_shader_atomic_int64)
  • DX12 (with SM 6.6+)
  • Metal (with MSL 2.4+)

This is a native only feature.

source

pub const SHADER_INT64_ATOMIC_ALL_OPS: FeaturesWGPU = _

Allows shaders to use all i64 and u64 atomic operations.

Supported platforms:

  • Vulkan (with VK_KHR_shader_atomic_int64)
  • DX12 (with SM 6.6+)

This is a native only feature.

source

pub const VULKAN_GOOGLE_DISPLAY_TIMING: FeaturesWGPU = _

Allows using the VK_GOOGLE_display_timing Vulkan extension.

This is used for frame pacing to reduce latency, and is generally only available on Android.

This feature does not have a wgpu-level API, and so users of wgpu wishing to use this functionality must access it using various as_hal functions, primarily Surface::as_hal(), to then use.

Supported platforms:

This is a native only feature.

source

pub const VULKAN_EXTERNAL_MEMORY_WIN32: FeaturesWGPU = _

Allows using the VK_KHR_external_memory_win32 Vulkan extension.

Supported platforms:

This is a native only feature.

source

pub const TEXTURE_INT64_ATOMIC: FeaturesWGPU = _

Enables R64Uint image atomic min and max.

Supported platforms:

  • Vulkan (with VK_EXT_shader_image_atomic_int64)
  • DX12 (with SM 6.6+)
  • Metal (with MSL 3.1+)

This is a native only feature.

source

pub const UNIFORM_BUFFER_BINDING_ARRAYS: FeaturesWGPU = _

Allows uniform buffers to be bound as binding arrays.

This allows:

  • Shaders to contain var<uniform> buffer: binding_array<UniformBuffer>;
  • The count field of BindGroupLayoutEntrys with Uniform buffers, to be set to Some.

Supported platforms:

Potential Platforms:

  • DX12
  • Metal
  • Vulkan 1.2+ (or VK_EXT_descriptor_indexing)’s shaderUniformBufferArrayNonUniformIndexing feature)

This is a native only feature.

source§

impl FeaturesWGPU

source

pub const fn empty() -> FeaturesWGPU

Get a flags value with all bits unset.

source

pub const fn all() -> FeaturesWGPU

Get a flags value with all known bits set.

source

pub const fn bits(&self) -> u64

Get the underlying bits value.

The returned value is exactly the bits set in this flags value.

source

pub const fn from_bits(bits: u64) -> Option<FeaturesWGPU>

Convert from a bits value.

This method will return None if any unknown bits are set.

source

pub const fn from_bits_truncate(bits: u64) -> FeaturesWGPU

Convert from a bits value, unsetting any unknown bits.

source

pub const fn from_bits_retain(bits: u64) -> FeaturesWGPU

Convert from a bits value exactly.

source

pub fn from_name(name: &str) -> Option<FeaturesWGPU>

Get a flags value with the bits of a flag with the given name set.

This method will return None if name is empty or doesn’t correspond to any named flag.

source

pub const fn is_empty(&self) -> bool

Whether all bits in this flags value are unset.

source

pub const fn is_all(&self) -> bool

Whether all known bits in this flags value are set.

source

pub const fn intersects(&self, other: FeaturesWGPU) -> bool

Whether any set bits in a source flags value are also set in a target flags value.

source

pub const fn contains(&self, other: FeaturesWGPU) -> bool

Whether all set bits in a source flags value are also set in a target flags value.

source

pub fn insert(&mut self, other: FeaturesWGPU)

The bitwise or (|) of the bits in two flags values.

source

pub fn remove(&mut self, other: FeaturesWGPU)

The intersection of a source flags value with the complement of a target flags value (&!).

This method is not equivalent to self & !other when other has unknown bits set. remove won’t truncate other, but the ! operator will.

source

pub fn toggle(&mut self, other: FeaturesWGPU)

The bitwise exclusive-or (^) of the bits in two flags values.

source

pub fn set(&mut self, other: FeaturesWGPU, value: bool)

Call insert when value is true or remove when value is false.

source

pub const fn intersection(self, other: FeaturesWGPU) -> FeaturesWGPU

The bitwise and (&) of the bits in two flags values.

source

pub const fn union(self, other: FeaturesWGPU) -> FeaturesWGPU

The bitwise or (|) of the bits in two flags values.

source

pub const fn difference(self, other: FeaturesWGPU) -> FeaturesWGPU

The intersection of a source flags value with the complement of a target flags value (&!).

This method is not equivalent to self & !other when other has unknown bits set. difference won’t truncate other, but the ! operator will.

source

pub const fn symmetric_difference(self, other: FeaturesWGPU) -> FeaturesWGPU

The bitwise exclusive-or (^) of the bits in two flags values.

source

pub const fn complement(self) -> FeaturesWGPU

The bitwise negation (!) of the bits in a flags value, truncating the result.

source§

impl FeaturesWGPU

source

pub const fn iter(&self) -> Iter<FeaturesWGPU>

Yield a set of contained flags values.

Each yielded flags value will correspond to a defined named flag. Any unknown bits will be yielded together as a final flags value.

source

pub const fn iter_names(&self) -> IterNames<FeaturesWGPU>

Yield a set of contained named flags values.

This method is like iter, except only yields bits in contained named flags. Any unknown bits, or bits not corresponding to a contained flag will not be yielded.

Trait Implementations§

source§

impl Binary for FeaturesWGPU

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl BitAnd for FeaturesWGPU

source§

fn bitand(self, other: FeaturesWGPU) -> FeaturesWGPU

The bitwise and (&) of the bits in two flags values.

source§

type Output = FeaturesWGPU

The resulting type after applying the & operator.
source§

impl BitAndAssign for FeaturesWGPU

source§

fn bitand_assign(&mut self, other: FeaturesWGPU)

The bitwise and (&) of the bits in two flags values.

source§

impl BitOr for FeaturesWGPU

source§

fn bitor(self, other: FeaturesWGPU) -> FeaturesWGPU

The bitwise or (|) of the bits in two flags values.

source§

type Output = FeaturesWGPU

The resulting type after applying the | operator.
source§

impl BitOrAssign for FeaturesWGPU

source§

fn bitor_assign(&mut self, other: FeaturesWGPU)

The bitwise or (|) of the bits in two flags values.

source§

impl BitXor for FeaturesWGPU

source§

fn bitxor(self, other: FeaturesWGPU) -> FeaturesWGPU

The bitwise exclusive-or (^) of the bits in two flags values.

source§

type Output = FeaturesWGPU

The resulting type after applying the ^ operator.
source§

impl BitXorAssign for FeaturesWGPU

source§

fn bitxor_assign(&mut self, other: FeaturesWGPU)

The bitwise exclusive-or (^) of the bits in two flags values.

source§

impl Clone for FeaturesWGPU

source§

fn clone(&self) -> FeaturesWGPU

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for FeaturesWGPU

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for FeaturesWGPU

source§

fn default() -> FeaturesWGPU

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for FeaturesWGPU

source§

fn deserialize<__D>( __deserializer: __D, ) -> Result<FeaturesWGPU, <__D as Deserializer<'de>>::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Extend<FeaturesWGPU> for FeaturesWGPU

source§

fn extend<T>(&mut self, iterator: T)
where T: IntoIterator<Item = FeaturesWGPU>,

The bitwise or (|) of the bits in each flags value.

source§

fn extend_one(&mut self, item: A)

🔬This is a nightly-only experimental API. (extend_one)
Extends a collection with exactly one element.
source§

fn extend_reserve(&mut self, additional: usize)

🔬This is a nightly-only experimental API. (extend_one)
Reserves capacity in a collection for the given number of additional elements. Read more
source§

impl Flags for FeaturesWGPU

source§

const FLAGS: &'static [Flag<FeaturesWGPU>] = _

The set of defined flags.
source§

type Bits = u64

The underlying bits type.
source§

fn bits(&self) -> u64

Get the underlying bits value. Read more
source§

fn from_bits_retain(bits: u64) -> FeaturesWGPU

Convert from a bits value exactly.
§

fn empty() -> Self

Get a flags value with all bits unset.
§

fn all() -> Self

Get a flags value with all known bits set.
§

fn contains_unknown_bits(&self) -> bool

This method will return true if any unknown bits are set.
§

fn from_bits(bits: Self::Bits) -> Option<Self>

Convert from a bits value. Read more
§

fn from_bits_truncate(bits: Self::Bits) -> Self

Convert from a bits value, unsetting any unknown bits.
§

fn from_name(name: &str) -> Option<Self>

Get a flags value with the bits of a flag with the given name set. Read more
§

fn iter(&self) -> Iter<Self>

Yield a set of contained flags values. Read more
§

fn iter_names(&self) -> IterNames<Self>

Yield a set of contained named flags values. Read more
§

fn is_empty(&self) -> bool

Whether all bits in this flags value are unset.
§

fn is_all(&self) -> bool

Whether all known bits in this flags value are set.
§

fn intersects(&self, other: Self) -> bool
where Self: Sized,

Whether any set bits in a source flags value are also set in a target flags value.
§

fn contains(&self, other: Self) -> bool
where Self: Sized,

Whether all set bits in a source flags value are also set in a target flags value.
§

fn truncate(&mut self)
where Self: Sized,

Remove any unknown bits from the flags.
§

fn insert(&mut self, other: Self)
where Self: Sized,

The bitwise or (|) of the bits in two flags values.
§

fn remove(&mut self, other: Self)
where Self: Sized,

The intersection of a source flags value with the complement of a target flags value (&!). Read more
§

fn toggle(&mut self, other: Self)
where Self: Sized,

The bitwise exclusive-or (^) of the bits in two flags values.
§

fn set(&mut self, other: Self, value: bool)
where Self: Sized,

Call [Flags::insert] when value is true or [Flags::remove] when value is false.
§

fn intersection(self, other: Self) -> Self

The bitwise and (&) of the bits in two flags values.
§

fn union(self, other: Self) -> Self

The bitwise or (|) of the bits in two flags values.
§

fn difference(self, other: Self) -> Self

The intersection of a source flags value with the complement of a target flags value (&!). Read more
§

fn symmetric_difference(self, other: Self) -> Self

The bitwise exclusive-or (^) of the bits in two flags values.
§

fn complement(self) -> Self

The bitwise negation (!) of the bits in a flags value, truncating the result.
source§

impl From<FeaturesWGPU> for Features

source§

fn from(features_wgpu: FeaturesWGPU) -> Features

Converts to this type from the input type.
source§

impl FromIterator<FeaturesWGPU> for FeaturesWGPU

source§

fn from_iter<T>(iterator: T) -> FeaturesWGPU
where T: IntoIterator<Item = FeaturesWGPU>,

The bitwise or (|) of the bits in each flags value.

source§

impl Hash for FeaturesWGPU

source§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl IntoIterator for FeaturesWGPU

source§

type Item = FeaturesWGPU

The type of the elements being iterated over.
source§

type IntoIter = Iter<FeaturesWGPU>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <FeaturesWGPU as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl LowerHex for FeaturesWGPU

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Not for FeaturesWGPU

source§

fn not(self) -> FeaturesWGPU

The bitwise negation (!) of the bits in a flags value, truncating the result.

source§

type Output = FeaturesWGPU

The resulting type after applying the ! operator.
source§

impl Octal for FeaturesWGPU

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl PartialEq for FeaturesWGPU

source§

fn eq(&self, other: &FeaturesWGPU) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for FeaturesWGPU

source§

fn serialize<__S>( &self, __serializer: __S, ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Sub for FeaturesWGPU

source§

fn sub(self, other: FeaturesWGPU) -> FeaturesWGPU

The intersection of a source flags value with the complement of a target flags value (&!).

This method is not equivalent to self & !other when other has unknown bits set. difference won’t truncate other, but the ! operator will.

source§

type Output = FeaturesWGPU

The resulting type after applying the - operator.
source§

impl SubAssign for FeaturesWGPU

source§

fn sub_assign(&mut self, other: FeaturesWGPU)

The intersection of a source flags value with the complement of a target flags value (&!).

This method is not equivalent to self & !other when other has unknown bits set. difference won’t truncate other, but the ! operator will.

source§

impl UpperHex for FeaturesWGPU

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Copy for FeaturesWGPU

source§

impl Eq for FeaturesWGPU

source§

impl StructuralPartialEq for FeaturesWGPU

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
§

impl<T> Downcast<T> for T

§

fn downcast(&self) -> &T

§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> Upcast<T> for T

§

fn upcast(&self) -> Option<&T>

source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

source§

impl<T> WasmNotSend for T
where T: Send,

source§

impl<T> WasmNotSendSync for T

source§

impl<T> WasmNotSync for T
where T: Sync,