pub struct TreeShakeStats {
pub classes_analyzed: usize,
pub classes_removed: usize,
pub responsive_removed: usize,
pub conditional_removed: usize,
pub custom_removed: usize,
pub processing_time_ms: u64,
}Expand description
Statistics for tree-shaking operation
Fields§
§classes_analyzed: usizeNumber of classes analyzed
classes_removed: usizeNumber of classes removed
responsive_removed: usizeNumber of responsive variants removed
conditional_removed: usizeNumber of conditional classes removed
custom_removed: usizeNumber of custom properties removed
processing_time_ms: u64Processing time in milliseconds
Trait Implementations§
Source§impl Clone for TreeShakeStats
impl Clone for TreeShakeStats
Source§fn clone(&self) -> TreeShakeStats
fn clone(&self) -> TreeShakeStats
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 TreeShakeStats
impl RefUnwindSafe for TreeShakeStats
impl Send for TreeShakeStats
impl Sync for TreeShakeStats
impl Unpin for TreeShakeStats
impl UnwindSafe for TreeShakeStats
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