pub struct CTSheetView {
pub tab_selected: Option<bool>,
pub workbook_view_id: i32,
}
Expand description
CTSheetView represents a single sheet view definition. When more than one sheet view is defined in the file, it means that when opening the workbook, each sheet view corresponds to a separate window within the spreadsheet application, where each window is showing the particular sheet containing the same workbookViewId value, the last sheetView definition is loaded, and the others are discarded. When multiple windows are viewing the same sheet, multiple sheetView elements (with corresponding workbookView entries) are saved.
Fields§
§tab_selected: Option<bool>
§workbook_view_id: i32
Trait Implementations§
Source§impl Debug for CTSheetView
impl Debug for CTSheetView
Source§impl<'de> Deserialize<'de> for CTSheetView
impl<'de> Deserialize<'de> for CTSheetView
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 CTSheetView
impl PartialEq for CTSheetView
Source§impl Serialize for CTSheetView
impl Serialize for CTSheetView
impl StructuralPartialEq for CTSheetView
Auto Trait Implementations§
impl Freeze for CTSheetView
impl RefUnwindSafe for CTSheetView
impl Send for CTSheetView
impl Sync for CTSheetView
impl Unpin for CTSheetView
impl UnwindSafe for CTSheetView
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