Struct wgpu_types::QuerySetDescriptor
source · pub struct QuerySetDescriptor<L> {
pub label: L,
pub ty: QueryType,
pub count: u32,
}
Expand description
Describes how to create a QuerySet.
Corresponds to WebGPU GPUQuerySetDescriptor
.
Fields§
§label: L
Debug label for the query set.
ty: QueryType
Kind of query that this query set should contain.
count: u32
Total count of queries the set contains. Must not be zero.
Must not be greater than QUERY_SET_MAX_QUERIES
.
Implementations§
source§impl<L> QuerySetDescriptor<L>
impl<L> QuerySetDescriptor<L>
sourcepub fn map_label<'a, K>(
&'a self,
fun: impl FnOnce(&'a L) -> K
) -> QuerySetDescriptor<K>
pub fn map_label<'a, K>( &'a self, fun: impl FnOnce(&'a L) -> K ) -> QuerySetDescriptor<K>
Takes a closure and maps the label of the query set descriptor into another.
Trait Implementations§
source§impl<L: Clone> Clone for QuerySetDescriptor<L>
impl<L: Clone> Clone for QuerySetDescriptor<L>
source§fn clone(&self) -> QuerySetDescriptor<L>
fn clone(&self) -> QuerySetDescriptor<L>
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<L: Debug> Debug for QuerySetDescriptor<L>
impl<L: Debug> Debug for QuerySetDescriptor<L>
source§impl<'de, L> Deserialize<'de> for QuerySetDescriptor<L>where
L: Deserialize<'de>,
impl<'de, L> Deserialize<'de> for QuerySetDescriptor<L>where L: Deserialize<'de>,
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more