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 moreAuto Trait Implementations§
impl<L> Freeze for QuerySetDescriptor<L>where
L: Freeze,
impl<L> RefUnwindSafe for QuerySetDescriptor<L>where
L: RefUnwindSafe,
impl<L> Send for QuerySetDescriptor<L>where
L: Send,
impl<L> Sync for QuerySetDescriptor<L>where
L: Sync,
impl<L> Unpin for QuerySetDescriptor<L>where
L: Unpin,
impl<L> UnwindSafe for QuerySetDescriptor<L>where
L: UnwindSafe,
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)