pub struct ProgressiveRenderStats {
pub queued: usize,
pub rendering: usize,
pub completed: usize,
}Expand description
Progressive rendering statistics
Fields§
§queued: usizeNumber of tiles queued
rendering: usizeNumber of tiles rendering
completed: usizeNumber of tiles completed
Implementations§
Trait Implementations§
Source§impl Clone for ProgressiveRenderStats
impl Clone for ProgressiveRenderStats
Source§fn clone(&self) -> ProgressiveRenderStats
fn clone(&self) -> ProgressiveRenderStats
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 ProgressiveRenderStats
impl Debug for ProgressiveRenderStats
Source§impl<'de> Deserialize<'de> for ProgressiveRenderStats
impl<'de> Deserialize<'de> for ProgressiveRenderStats
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 Serialize for ProgressiveRenderStats
impl Serialize for ProgressiveRenderStats
impl Copy for ProgressiveRenderStats
Auto Trait Implementations§
impl Freeze for ProgressiveRenderStats
impl RefUnwindSafe for ProgressiveRenderStats
impl Send for ProgressiveRenderStats
impl Sync for ProgressiveRenderStats
impl Unpin for ProgressiveRenderStats
impl UnsafeUnpin for ProgressiveRenderStats
impl UnwindSafe for ProgressiveRenderStats
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