pub enum ExcelRowKind {
SingleRow(ExcelSingleRow),
SubRows(Vec<ExcelSingleRow>),
}
Variants§
SingleRow(ExcelSingleRow)
SubRows(Vec<ExcelSingleRow>)
Trait Implementations§
Source§impl Clone for ExcelRowKind
impl Clone for ExcelRowKind
Source§fn clone(&self) -> ExcelRowKind
fn clone(&self) -> ExcelRowKind
Returns a copy of the value. Read more
1.0.0 · 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 ExcelRowKind
impl Debug for ExcelRowKind
Source§impl PartialEq for ExcelRowKind
impl PartialEq for ExcelRowKind
impl StructuralPartialEq for ExcelRowKind
Auto Trait Implementations§
impl Freeze for ExcelRowKind
impl RefUnwindSafe for ExcelRowKind
impl Send for ExcelRowKind
impl Sync for ExcelRowKind
impl Unpin for ExcelRowKind
impl UnwindSafe for ExcelRowKind
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