pub struct PassTimestampWrites<QS = QuerySetId> {
pub query_set: QS,
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 or compute pass.
Fields§
§query_set: QS
The query set to write the timestamps 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<QS: Clone> Clone for PassTimestampWrites<QS>
impl<QS: Clone> Clone for PassTimestampWrites<QS>
source§fn clone(&self) -> PassTimestampWrites<QS>
fn clone(&self) -> PassTimestampWrites<QS>
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<QS: Debug> Debug for PassTimestampWrites<QS>
impl<QS: Debug> Debug for PassTimestampWrites<QS>
source§impl<'de, QS> Deserialize<'de> for PassTimestampWrites<QS>where
QS: Deserialize<'de>,
impl<'de, QS> Deserialize<'de> for PassTimestampWrites<QS>where
QS: 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
source§impl<QS: PartialEq> PartialEq for PassTimestampWrites<QS>
impl<QS: PartialEq> PartialEq for PassTimestampWrites<QS>
source§impl<QS> Serialize for PassTimestampWrites<QS>where
QS: Serialize,
impl<QS> Serialize for PassTimestampWrites<QS>where
QS: Serialize,
impl<QS: Eq> Eq for PassTimestampWrites<QS>
impl<QS> StructuralPartialEq for PassTimestampWrites<QS>
Auto Trait Implementations§
impl<QS> Freeze for PassTimestampWrites<QS>where
QS: Freeze,
impl<QS> RefUnwindSafe for PassTimestampWrites<QS>where
QS: RefUnwindSafe,
impl<QS> Send for PassTimestampWrites<QS>where
QS: Send,
impl<QS> Sync for PassTimestampWrites<QS>where
QS: Sync,
impl<QS> Unpin for PassTimestampWrites<QS>where
QS: Unpin,
impl<QS> UnwindSafe for PassTimestampWrites<QS>where
QS: 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
)§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
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
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.