pub enum CSVField {
Integer(isize),
Float(f64),
String(String),
}Variants§
Implementations§
Auto Trait Implementations§
impl Freeze for CSVField
impl RefUnwindSafe for CSVField
impl Send for CSVField
impl Sync for CSVField
impl Unpin for CSVField
impl UnwindSafe for CSVField
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