pub struct PresentStats {
pub bytes_written: usize,
pub dirty_cells: usize,
pub areas: usize,
pub full_repaint: bool,
}Fields§
§bytes_written: usize§dirty_cells: usize§areas: usize§full_repaint: boolTrait Implementations§
Source§impl Clone for PresentStats
impl Clone for PresentStats
Source§fn clone(&self) -> PresentStats
fn clone(&self) -> PresentStats
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PresentStats
Source§impl Debug for PresentStats
impl Debug for PresentStats
impl Eq for PresentStats
Source§impl PartialEq for PresentStats
impl PartialEq for PresentStats
Source§fn eq(&self, other: &PresentStats) -> bool
fn eq(&self, other: &PresentStats) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PresentStats
Auto Trait Implementations§
impl Freeze for PresentStats
impl RefUnwindSafe for PresentStats
impl Send for PresentStats
impl Sync for PresentStats
impl Unpin for PresentStats
impl UnsafeUnpin for PresentStats
impl UnwindSafe for PresentStats
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