#[repr(C)]pub struct RenderPassTimestampWrites {
pub query_set: QuerySetId,
pub beginning_of_pass_write_index: Option<u32>,
pub end_of_pass_write_index: Option<u32>,
}
Expand description
Describes the writing of timestamp values in a render pass.
Fields§
§query_set: QuerySetId
The query set to write the timestamp to.
beginning_of_pass_write_index: Option<u32>
The index of the query set at which a start timestamp of this pass is written, if any.
end_of_pass_write_index: Option<u32>
The index of the query set at which an end timestamp of this pass is written, if any.
Trait Implementations§
Source§impl Clone for RenderPassTimestampWrites
impl Clone for RenderPassTimestampWrites
Source§fn clone(&self) -> RenderPassTimestampWrites
fn clone(&self) -> RenderPassTimestampWrites
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 RenderPassTimestampWrites
impl Debug for RenderPassTimestampWrites
impl Eq for RenderPassTimestampWrites
impl StructuralPartialEq for RenderPassTimestampWrites
Auto Trait Implementations§
impl Freeze for RenderPassTimestampWrites
impl RefUnwindSafe for RenderPassTimestampWrites
impl Send for RenderPassTimestampWrites
impl Sync for RenderPassTimestampWrites
impl Unpin for RenderPassTimestampWrites
impl UnwindSafe for RenderPassTimestampWrites
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
)Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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.