#[repr(C)]pub struct RendererStatisticsT {
pub non_indexed_draws: u64,
pub indexed_draws: u64,
pub non_indexed_indirect_draws: u64,
pub indexed_indirect_draws: u64,
pub compute_dispatches: u64,
pub compute_indirect_dispatches: u64,
pub trace_dispatches: u64,
pub primitive_count: u64,
pub pipeline_binds: u64,
pub resource_barriers: u64,
pub render_pass_binds: u64,
}
Fields§
§non_indexed_draws: u64
§indexed_draws: u64
§non_indexed_indirect_draws: u64
§indexed_indirect_draws: u64
§compute_dispatches: u64
§compute_indirect_dispatches: u64
§trace_dispatches: u64
§primitive_count: u64
§pipeline_binds: u64
§resource_barriers: u64
§render_pass_binds: u64
Trait Implementations§
Source§impl Clone for RendererStatisticsT
impl Clone for RendererStatisticsT
Source§fn clone(&self) -> RendererStatisticsT
fn clone(&self) -> RendererStatisticsT
Returns a duplicate 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 Default for RendererStatisticsT
impl Default for RendererStatisticsT
Source§fn default() -> RendererStatisticsT
fn default() -> RendererStatisticsT
Returns the “default value” for a type. Read more
impl Copy for RendererStatisticsT
Auto Trait Implementations§
impl Freeze for RendererStatisticsT
impl RefUnwindSafe for RendererStatisticsT
impl Send for RendererStatisticsT
impl Sync for RendererStatisticsT
impl Unpin for RendererStatisticsT
impl UnwindSafe for RendererStatisticsT
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