pub struct RenderQueueStats {
pub pending: usize,
pub frame_count: usize,
pub total_executed: usize,
pub max_frame_count: usize,
pub capacity: usize,
}Expand description
Estadísticas de la render queue
Fields§
§pending: usize§frame_count: usize§total_executed: usize§max_frame_count: usize§capacity: usizeTrait Implementations§
Source§impl Clone for RenderQueueStats
impl Clone for RenderQueueStats
Source§fn clone(&self) -> RenderQueueStats
fn clone(&self) -> RenderQueueStats
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 Debug for RenderQueueStats
impl Debug for RenderQueueStats
Source§impl Default for RenderQueueStats
impl Default for RenderQueueStats
Source§fn default() -> RenderQueueStats
fn default() -> RenderQueueStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RenderQueueStats
impl RefUnwindSafe for RenderQueueStats
impl Send for RenderQueueStats
impl Sync for RenderQueueStats
impl Unpin for RenderQueueStats
impl UnsafeUnpin for RenderQueueStats
impl UnwindSafe for RenderQueueStats
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