pub struct WorkbookView {
pub sheet: u32,
pub window_width: i64,
pub window_height: i64,
}Expand description
A Workbook View tracks of the selected sheet for each view
Fields§
§sheet: u32The index of the currently selected sheet.
window_width: i64The current width of the window
window_height: i64The current height of the window
Trait Implementations§
Source§impl Clone for WorkbookView
impl Clone for WorkbookView
Source§fn clone(&self) -> WorkbookView
fn clone(&self) -> WorkbookView
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 WorkbookView
impl Debug for WorkbookView
Source§impl PartialEq for WorkbookView
impl PartialEq for WorkbookView
Source§fn eq(&self, other: &WorkbookView) -> bool
fn eq(&self, other: &WorkbookView) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'__de> Decode<'__de> for WorkbookViewwhere
'__de:,
impl Encode for WorkbookView
impl StructuralPartialEq for WorkbookView
Auto Trait Implementations§
impl Freeze for WorkbookView
impl RefUnwindSafe for WorkbookView
impl Send for WorkbookView
impl Sync for WorkbookView
impl Unpin for WorkbookView
impl UnsafeUnpin for WorkbookView
impl UnwindSafe for WorkbookView
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