pub enum DTypeFrom {
ProvidedForAll,
ProvidedByIndex,
ProvidedByName,
Guessed,
}
Expand description
How the data type was determined.
Variants§
ProvidedForAll
The data type was provided for all columns.
ProvidedByIndex
The data type was provided via the column’s index.
ProvidedByName
The data type was provided via the column’s name.
Guessed
The data type was guessed based on the column’s data.
Trait Implementations§
Source§impl FromStr for DTypeFrom
impl FromStr for DTypeFrom
Source§type Err = FastExcelError
type Err = FastExcelError
The associated error which can be returned from parsing.
impl StructuralPartialEq for DTypeFrom
Auto Trait Implementations§
impl Freeze for DTypeFrom
impl RefUnwindSafe for DTypeFrom
impl Send for DTypeFrom
impl Sync for DTypeFrom
impl Unpin for DTypeFrom
impl UnwindSafe for DTypeFrom
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