pub struct TileUpdateManagerStats {
pub total_updates: u64,
pub full_updates: u64,
pub delta_updates: u64,
pub invalidations: u64,
pub dropped_updates: u64,
pub pending_updates: usize,
}Expand description
Tile update manager statistics
Fields§
§total_updates: u64Total updates
full_updates: u64Full updates
delta_updates: u64Delta updates
invalidations: u64Invalidations
dropped_updates: u64Dropped updates
pending_updates: usizePending updates
Trait Implementations§
Source§impl Clone for TileUpdateManagerStats
impl Clone for TileUpdateManagerStats
Source§fn clone(&self) -> TileUpdateManagerStats
fn clone(&self) -> TileUpdateManagerStats
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 moreAuto Trait Implementations§
impl Freeze for TileUpdateManagerStats
impl RefUnwindSafe for TileUpdateManagerStats
impl Send for TileUpdateManagerStats
impl Sync for TileUpdateManagerStats
impl Unpin for TileUpdateManagerStats
impl UnsafeUnpin for TileUpdateManagerStats
impl UnwindSafe for TileUpdateManagerStats
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