pub struct SheetDescription {
pub name: String,
pub dimensions: Option<String>,
pub row_count: Option<u32>,
pub col_count: Option<u16>,
pub sample_rows: Vec<Vec<Value>>,
}Expand description
Sheet description including dimensions and sample rows.
Fields§
§name: String§dimensions: Option<String>§row_count: Option<u32>§col_count: Option<u16>§sample_rows: Vec<Vec<Value>>Trait Implementations§
Source§impl Debug for SheetDescription
impl Debug for SheetDescription
Auto Trait Implementations§
impl Freeze for SheetDescription
impl RefUnwindSafe for SheetDescription
impl Send for SheetDescription
impl Sync for SheetDescription
impl Unpin for SheetDescription
impl UnsafeUnpin for SheetDescription
impl UnwindSafe for SheetDescription
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