pub enum DataType {
Show 41 variants
String,
Alpha,
AlphaNumeric,
Numeric,
BigInteger,
Integer,
Long,
Short,
Decimal,
Float,
Double,
Boolean,
Uri,
Count,
InclusiveValueRange,
ExclusiveValueRange,
Incremental,
ObservationalTimePeriod,
StandardTimePeriod,
BasicTimePeriod,
GregorianTimePeriod,
GregorianYear,
GregorianYearMonth,
GregorianDay,
ReportingTimePeriod,
ReportingYear,
ReportingSemester,
ReportingTrimester,
ReportingQuarter,
ReportingMonth,
ReportingWeek,
ReportingDay,
DateTime,
TimeRange,
Month,
MonthDay,
Day,
Time,
Duration,
GeospatialInformation,
Xhtml,
}
Expand description
The specific data format for representing something.
Variants§
String
Alpha
AlphaNumeric
Numeric
BigInteger
Integer
Long
Short
Decimal
Float
Double
Boolean
Uri
Count
InclusiveValueRange
ExclusiveValueRange
Incremental
ObservationalTimePeriod
StandardTimePeriod
BasicTimePeriod
GregorianTimePeriod
GregorianYear
GregorianYearMonth
GregorianDay
ReportingTimePeriod
ReportingYear
ReportingSemester
ReportingTrimester
ReportingQuarter
ReportingMonth
ReportingWeek
ReportingDay
DateTime
TimeRange
Month
MonthDay
Day
Time
Duration
GeospatialInformation
Xhtml
Implementations§
Source§impl DataType
impl DataType
pub const fn is_reporting(&self) -> bool
pub const fn is_gregorian(&self) -> bool
Trait Implementations§
Source§impl<'de> Deserialize<'de> for DataType
impl<'de> Deserialize<'de> for DataType
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 TryFrom<DataType> for TimeDataType
impl TryFrom<DataType> for TimeDataType
impl Eq for DataType
impl StructuralPartialEq for DataType
Auto Trait Implementations§
impl Freeze for DataType
impl RefUnwindSafe for DataType
impl Send for DataType
impl Sync for DataType
impl Unpin for DataType
impl UnwindSafe for DataType
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