pub struct CtCustomSheetView {Show 29 fields
pub pane: Option<CtPane>,
pub selection: Option<CtSelection>,
pub row_breaks: Option<CtPageBreak>,
pub col_breaks: Option<CtPageBreak>,
pub page_margins: Option<CtPageMargins>,
pub print_options: Option<CtPrintOptions>,
pub page_setup: Option<CtPageSetup>,
pub header_footer: Option<CtHeaderFooter>,
pub auto_filter: Option<CtAutoFilter>,
pub guid: String,
pub scale: u32,
pub color_id: u32,
pub show_page_breaks: bool,
pub show_formulas: bool,
pub show_grid_lines: bool,
pub show_row_col: bool,
pub outline_symbols: bool,
pub zero_values: bool,
pub fit_to_page: bool,
pub print_area: bool,
pub filter: bool,
pub show_auto_filter: bool,
pub hidden_rows: bool,
pub hidden_columns: bool,
pub state: StSheetState,
pub filter_unique: bool,
pub view: StSheetViewType,
pub show_ruler: bool,
pub top_left_cell: Option<String>,
}Fields§
§pane: Option<CtPane>§selection: Option<CtSelection>§row_breaks: Option<CtPageBreak>§col_breaks: Option<CtPageBreak>§page_margins: Option<CtPageMargins>§print_options: Option<CtPrintOptions>§page_setup: Option<CtPageSetup>§auto_filter: Option<CtAutoFilter>§guid: String§scale: u32§color_id: u32§show_page_breaks: bool§show_formulas: bool§show_grid_lines: bool§show_row_col: bool§outline_symbols: bool§zero_values: bool§fit_to_page: bool§print_area: bool§filter: bool§show_auto_filter: bool§state: StSheetState§filter_unique: bool§view: StSheetViewType§show_ruler: bool§top_left_cell: Option<String>Trait Implementations§
Source§impl Debug for CtCustomSheetView
impl Debug for CtCustomSheetView
Source§impl XmlDeserialize for CtCustomSheetView
impl XmlDeserialize for CtCustomSheetView
fn deserialize<B>(
tag: &[u8],
reader: &mut Reader<B>,
attrs: Attributes<'_>,
is_empty: bool,
) -> CtCustomSheetViewwhere
B: BufRead,
A helper function used when ty =
untag. It could help
us to find out the children tags when deserializingfn de_root() -> Option<&'static [u8]>
Source§fn __deserialize_from_unparsed_array(
_array: Vec<(&'static [u8], Unparsed)>,
) -> Self
fn __deserialize_from_unparsed_array( _array: Vec<(&'static [u8], Unparsed)>, ) -> Self
A helper function used when handling the untag types. Read more
fn __deserialize_from_text(_: &str) -> Option<Self>where
Self: Sized,
Auto Trait Implementations§
impl Freeze for CtCustomSheetView
impl RefUnwindSafe for CtCustomSheetView
impl Send for CtCustomSheetView
impl Sync for CtCustomSheetView
impl Unpin for CtCustomSheetView
impl UnwindSafe for CtCustomSheetView
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.