#[non_exhaustive]pub struct WorkbookSideInfo {
pub source: SourceDescription,
pub workbook_name: Option<String>,
pub sheet_count: usize,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.source: SourceDescription§workbook_name: Option<String>§sheet_count: usizeTrait Implementations§
Source§impl Clone for WorkbookSideInfo
impl Clone for WorkbookSideInfo
Source§fn clone(&self) -> WorkbookSideInfo
fn clone(&self) -> WorkbookSideInfo
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 WorkbookSideInfo
impl Debug for WorkbookSideInfo
Source§impl PartialEq for WorkbookSideInfo
impl PartialEq for WorkbookSideInfo
Source§fn eq(&self, other: &WorkbookSideInfo) -> bool
fn eq(&self, other: &WorkbookSideInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WorkbookSideInfo
Auto Trait Implementations§
impl Freeze for WorkbookSideInfo
impl RefUnwindSafe for WorkbookSideInfo
impl Send for WorkbookSideInfo
impl Sync for WorkbookSideInfo
impl Unpin for WorkbookSideInfo
impl UnsafeUnpin for WorkbookSideInfo
impl UnwindSafe for WorkbookSideInfo
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