pub enum TimeDataType {
Show 17 variants
ObservationalTimePeriod,
StandardTimePeriod,
BasicTimePeriod,
GregorianTimePeriod,
GregorianYear,
GregorianYearMonth,
GregorianDay,
ReportingTimePeriod,
ReportingYear,
ReportingSemester,
ReportingTrimester,
ReportingQuarter,
ReportingMonth,
ReportingWeek,
ReportingDay,
DateTime,
TimeRange,
}
Expand description
The specific data type of a time dimension.
Variants§
ObservationalTimePeriod
StandardTimePeriod
BasicTimePeriod
GregorianTimePeriod
GregorianYear
GregorianYearMonth
GregorianDay
ReportingTimePeriod
ReportingYear
ReportingSemester
ReportingTrimester
ReportingQuarter
ReportingMonth
ReportingWeek
ReportingDay
DateTime
TimeRange
Implementations§
Source§impl TimeDataType
impl TimeDataType
pub const fn is_reporting(&self) -> bool
pub const fn is_gregorian(&self) -> bool
Trait Implementations§
Source§impl Clone for TimeDataType
impl Clone for TimeDataType
Source§fn clone(&self) -> TimeDataType
fn clone(&self) -> TimeDataType
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 TimeDataType
impl Debug for TimeDataType
Source§impl<'de> Deserialize<'de> for TimeDataType
impl<'de> Deserialize<'de> for TimeDataType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<TimeDataType> for DataType
impl From<TimeDataType> for DataType
Source§fn from(value: TimeDataType) -> Self
fn from(value: TimeDataType) -> Self
Converts to this type from the input type.
Source§impl PartialEq for TimeDataType
impl PartialEq for TimeDataType
Source§impl Serialize for TimeDataType
impl Serialize for TimeDataType
Source§impl TryFrom<DataType> for TimeDataType
impl TryFrom<DataType> for TimeDataType
impl Copy for TimeDataType
impl Eq for TimeDataType
impl StructuralPartialEq for TimeDataType
Auto Trait Implementations§
impl Freeze for TimeDataType
impl RefUnwindSafe for TimeDataType
impl Send for TimeDataType
impl Sync for TimeDataType
impl Unpin for TimeDataType
impl UnwindSafe for TimeDataType
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