pub(crate) struct DeferredQuerySetResolve {
pub(crate) query_set: Arc<QuerySet>,
pub(crate) query_set_writes: Option<BitVec>,
pub(crate) start_query: u32,
pub(crate) end_query: u32,
pub(crate) dst_buffer: Arc<Buffer>,
pub(crate) destination_offset: BufferAddress,
pub(crate) stride: u64,
pub(crate) insertion_point: usize,
}Fields§
§query_set: Arc<QuerySet>§query_set_writes: Option<BitVec>§start_query: u32§end_query: u32§dst_buffer: Arc<Buffer>§destination_offset: BufferAddress§stride: u64Bytes per query slot in the destination buffer
(accounts for pipeline-statistics element count * QUERY_SIZE).
insertion_point: usizeIndex into InnerCommandEncoder::list at which a new command buffer
for the resolve operation must be inserted at submit time so that it
executes at exactly the position it was recorded.
Auto Trait Implementations§
impl Freeze for DeferredQuerySetResolve
impl !RefUnwindSafe for DeferredQuerySetResolve
impl Send for DeferredQuerySetResolve
impl Sync for DeferredQuerySetResolve
impl Unpin for DeferredQuerySetResolve
impl !UnwindSafe for DeferredQuerySetResolve
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more