pub struct ThinReport {
pub kept: usize,
pub dropped: usize,
}Expand description
Outcome of an apply_thinning pass.
Fields§
§kept: usize§dropped: usizeTrait Implementations§
Source§impl Clone for ThinReport
impl Clone for ThinReport
Source§fn clone(&self) -> ThinReport
fn clone(&self) -> ThinReport
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 moreSource§impl Debug for ThinReport
impl Debug for ThinReport
Source§impl PartialEq for ThinReport
impl PartialEq for ThinReport
Source§fn eq(&self, other: &ThinReport) -> bool
fn eq(&self, other: &ThinReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ThinReport
Auto Trait Implementations§
impl Freeze for ThinReport
impl RefUnwindSafe for ThinReport
impl Send for ThinReport
impl Sync for ThinReport
impl Unpin for ThinReport
impl UnsafeUnpin for ThinReport
impl UnwindSafe for ThinReport
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