1
2
3
4
5
6
7
8
9
10
11
use chrono::FixedOffset;

#[derive(Debug)]
pub enum Nature {
    //NaiveDate, // not yet supported
    /// we'll take the first offset for the whole column
    Date(FixedOffset),
    Integer,
}

impl Nature {}