pub struct SheetMetrics {
pub row_count: u32,
pub column_count: u32,
pub non_empty_cells: u32,
pub formula_cells: u32,
pub cached_values: u32,
pub comments: u32,
pub style_map: HashMap<String, StyleUsage>,
pub classification: SheetClassification,
}Fields§
§row_count: u32§column_count: u32§non_empty_cells: u32§formula_cells: u32§cached_values: u32§comments: u32§style_map: HashMap<String, StyleUsage>§classification: SheetClassificationTrait Implementations§
Source§impl Clone for SheetMetrics
impl Clone for SheetMetrics
Source§fn clone(&self) -> SheetMetrics
fn clone(&self) -> SheetMetrics
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 SheetMetrics
impl RefUnwindSafe for SheetMetrics
impl Send for SheetMetrics
impl Sync for SheetMetrics
impl Unpin for SheetMetrics
impl UnwindSafe for SheetMetrics
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