pub struct WorkbookMap {
pub path: String,
pub sheets: Vec<SheetMap>,
pub named_ranges: Vec<(String, String)>,
}Fields§
§path: String§sheets: Vec<SheetMap>§named_ranges: Vec<(String, String)>Workbook-level defined names as (name, formula) pairs, exactly
as calamine surfaces them. The formula string is a sheet+range
reference like 'P&L'!$A$1:$D$25 for typical named ranges.
Trait Implementations§
Source§impl Clone for WorkbookMap
impl Clone for WorkbookMap
Source§fn clone(&self) -> WorkbookMap
fn clone(&self) -> WorkbookMap
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 WorkbookMap
impl RefUnwindSafe for WorkbookMap
impl Send for WorkbookMap
impl Sync for WorkbookMap
impl Unpin for WorkbookMap
impl UnsafeUnpin for WorkbookMap
impl UnwindSafe for WorkbookMap
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