pub enum Datatype {
}
Expand description
Data Forms Validation Datatypes
Variants§
AnyUri
A Uniform Resource Identifier Reference (URI)
Byte
An integer with the specified min/max Min: -128, Max: 127
Date
A calendar date
DateTime
A specific instant of time
Decimal
An arbitrary-precision decimal number
Double
An IEEE double-precision 64-bit floating point type
Int
An integer with the specified min/max Min: -2147483648, Max: 2147483647
Integer
A decimal number with no fraction digits
Language
A language identifier as defined by RFC 1766
Long
An integer with the specified min/max Min: -9223372036854775808, Max: 9223372036854775807
Short
An integer with the specified min/max Min: -32768, Max: 32767
String
A character strings in XML
Time
An instant of time that recurs every day
UserDefined(String)
A user-defined datatype
Other
A non-standard datatype
Trait Implementations§
Source§impl AsXmlText for Datatype
impl AsXmlText for Datatype
Source§impl FromXmlText for Datatype
impl FromXmlText for Datatype
Source§impl IntoAttributeValue for Datatype
impl IntoAttributeValue for Datatype
Source§fn into_attribute_value(self) -> Option<String>
fn into_attribute_value(self) -> Option<String>
Turns this into an attribute string, or None if it shouldn’t be added.
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> AsOptionalXmlText for Twhere
T: AsXmlText,
impl<T> AsOptionalXmlText for Twhere
T: AsXmlText,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
Source§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
Converts the given value to a
CompactString
. Read more