pub struct WorksheetXml {Show 22 fields
pub xmlns: String,
pub xmlns_r: String,
pub sheet_pr: Option<SheetPr>,
pub dimension: Option<Dimension>,
pub sheet_views: Option<SheetViews>,
pub sheet_format_pr: Option<SheetFormatPr>,
pub cols: Option<Cols>,
pub sheet_data: SheetData,
pub sheet_protection: Option<SheetProtection>,
pub auto_filter: Option<AutoFilter>,
pub merge_cells: Option<MergeCells>,
pub conditional_formatting: Vec<ConditionalFormatting>,
pub data_validations: Option<DataValidations>,
pub hyperlinks: Option<Hyperlinks>,
pub print_options: Option<PrintOptions>,
pub page_margins: Option<PageMargins>,
pub page_setup: Option<PageSetup>,
pub header_footer: Option<HeaderFooter>,
pub row_breaks: Option<RowBreaks>,
pub drawing: Option<DrawingRef>,
pub legacy_drawing: Option<LegacyDrawingRef>,
pub table_parts: Option<TableParts>,
}Expand description
Worksheet root element.
Fields§
§xmlns: String§xmlns_r: String§sheet_pr: Option<SheetPr>§dimension: Option<Dimension>§sheet_views: Option<SheetViews>§sheet_format_pr: Option<SheetFormatPr>§cols: Option<Cols>§sheet_data: SheetData§sheet_protection: Option<SheetProtection>§auto_filter: Option<AutoFilter>§merge_cells: Option<MergeCells>§conditional_formatting: Vec<ConditionalFormatting>§data_validations: Option<DataValidations>§hyperlinks: Option<Hyperlinks>§print_options: Option<PrintOptions>§page_margins: Option<PageMargins>§page_setup: Option<PageSetup>§row_breaks: Option<RowBreaks>§drawing: Option<DrawingRef>§legacy_drawing: Option<LegacyDrawingRef>§table_parts: Option<TableParts>Trait Implementations§
Source§impl Clone for WorksheetXml
impl Clone for WorksheetXml
Source§fn clone(&self) -> WorksheetXml
fn clone(&self) -> WorksheetXml
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 moreSource§impl Debug for WorksheetXml
impl Debug for WorksheetXml
Source§impl Default for WorksheetXml
impl Default for WorksheetXml
Source§impl<'de> Deserialize<'de> for WorksheetXml
impl<'de> Deserialize<'de> for WorksheetXml
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for WorksheetXml
impl PartialEq for WorksheetXml
Source§impl Serialize for WorksheetXml
impl Serialize for WorksheetXml
impl StructuralPartialEq for WorksheetXml
Auto Trait Implementations§
impl Freeze for WorksheetXml
impl RefUnwindSafe for WorksheetXml
impl Send for WorksheetXml
impl Sync for WorksheetXml
impl Unpin for WorksheetXml
impl UnwindSafe for WorksheetXml
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