pub enum ExcelDateTimeType {
DateTime,
TimeDelta,
}
Expand description
Excel datetime type. Possible: date, time, datetime, duration. At this time we can only determine datetime (date and time are datetime too) and duration.
Variants§
Trait Implementations§
Source§impl Clone for ExcelDateTimeType
impl Clone for ExcelDateTimeType
Source§fn clone(&self) -> ExcelDateTimeType
fn clone(&self) -> ExcelDateTimeType
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 ExcelDateTimeType
impl Debug for ExcelDateTimeType
Source§impl PartialEq for ExcelDateTimeType
impl PartialEq for ExcelDateTimeType
impl Copy for ExcelDateTimeType
impl StructuralPartialEq for ExcelDateTimeType
Auto Trait Implementations§
impl Freeze for ExcelDateTimeType
impl RefUnwindSafe for ExcelDateTimeType
impl Send for ExcelDateTimeType
impl Sync for ExcelDateTimeType
impl Unpin for ExcelDateTimeType
impl UnwindSafe for ExcelDateTimeType
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