pub enum DataTypeName {
Boolean,
Integer,
Rational,
Real,
Complex,
String,
DateTime,
Other(String),
}Expand description
ISO 23387 property data-type names with forward-compatible retention.
Variants§
Boolean
Integer
Rational
Real
Complex
String
DateTime
Other(String)
A future or extension value retained verbatim.
Implementations§
Trait Implementations§
Source§impl Clone for DataTypeName
impl Clone for DataTypeName
Source§fn clone(&self) -> DataTypeName
fn clone(&self) -> DataTypeName
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 DataTypeName
impl Debug for DataTypeName
Source§impl From<&str> for DataTypeName
impl From<&str> for DataTypeName
Source§impl Hash for DataTypeName
impl Hash for DataTypeName
Source§impl PartialEq for DataTypeName
impl PartialEq for DataTypeName
impl Eq for DataTypeName
impl StructuralPartialEq for DataTypeName
Auto Trait Implementations§
impl Freeze for DataTypeName
impl RefUnwindSafe for DataTypeName
impl Send for DataTypeName
impl Sync for DataTypeName
impl Unpin for DataTypeName
impl UnwindSafe for DataTypeName
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