pub enum NormalizedStringDatatype {
NormalizedString,
Token(TokenDatatype),
}
Expand description
NormalizedStr
datatype variants.
Variants§
NormalizedString
Token(TokenDatatype)
Implementations§
Trait Implementations§
Source§impl Clone for NormalizedStringDatatype
impl Clone for NormalizedStringDatatype
Source§fn clone(&self) -> NormalizedStringDatatype
fn clone(&self) -> NormalizedStringDatatype
Returns a duplicate 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 NormalizedStringDatatype
impl Debug for NormalizedStringDatatype
Source§impl From<NCNameDatatype> for NormalizedStringDatatype
impl From<NCNameDatatype> for NormalizedStringDatatype
Source§fn from(value: NCNameDatatype) -> Self
fn from(value: NCNameDatatype) -> Self
Converts to this type from the input type.
Source§impl From<NameDatatype> for NormalizedStringDatatype
impl From<NameDatatype> for NormalizedStringDatatype
Source§fn from(value: NameDatatype) -> Self
fn from(value: NameDatatype) -> Self
Converts to this type from the input type.
Source§impl From<NormalizedStringDatatype> for Datatype
impl From<NormalizedStringDatatype> for Datatype
Source§fn from(value: NormalizedStringDatatype) -> Self
fn from(value: NormalizedStringDatatype) -> Self
Converts to this type from the input type.
Source§impl From<NormalizedStringDatatype> for StringDatatype
impl From<NormalizedStringDatatype> for StringDatatype
Source§fn from(value: NormalizedStringDatatype) -> Self
fn from(value: NormalizedStringDatatype) -> Self
Converts to this type from the input type.
Source§impl From<TokenDatatype> for NormalizedStringDatatype
impl From<TokenDatatype> for NormalizedStringDatatype
Source§fn from(value: TokenDatatype) -> Self
fn from(value: TokenDatatype) -> Self
Converts to this type from the input type.
Source§impl Hash for NormalizedStringDatatype
impl Hash for NormalizedStringDatatype
Source§impl Ord for NormalizedStringDatatype
impl Ord for NormalizedStringDatatype
Source§fn cmp(&self, other: &NormalizedStringDatatype) -> Ordering
fn cmp(&self, other: &NormalizedStringDatatype) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for NormalizedStringDatatype
impl PartialEq for NormalizedStringDatatype
Source§impl PartialOrd for NormalizedStringDatatype
impl PartialOrd for NormalizedStringDatatype
Source§impl TryFrom<Datatype> for NormalizedStringDatatype
impl TryFrom<Datatype> for NormalizedStringDatatype
Source§impl TryFrom<NormalizedStringDatatype> for NCNameDatatype
impl TryFrom<NormalizedStringDatatype> for NCNameDatatype
Source§type Error = NormalizedStringDatatype
type Error = NormalizedStringDatatype
The type returned in the event of a conversion error.
Source§fn try_from(
value: NormalizedStringDatatype,
) -> Result<Self, NormalizedStringDatatype>
fn try_from( value: NormalizedStringDatatype, ) -> Result<Self, NormalizedStringDatatype>
Performs the conversion.
Source§impl TryFrom<NormalizedStringDatatype> for NameDatatype
impl TryFrom<NormalizedStringDatatype> for NameDatatype
Source§type Error = NormalizedStringDatatype
type Error = NormalizedStringDatatype
The type returned in the event of a conversion error.
Source§fn try_from(
value: NormalizedStringDatatype,
) -> Result<Self, NormalizedStringDatatype>
fn try_from( value: NormalizedStringDatatype, ) -> Result<Self, NormalizedStringDatatype>
Performs the conversion.
Source§impl TryFrom<NormalizedStringDatatype> for TokenDatatype
impl TryFrom<NormalizedStringDatatype> for TokenDatatype
Source§type Error = NormalizedStringDatatype
type Error = NormalizedStringDatatype
The type returned in the event of a conversion error.
Source§fn try_from(
value: NormalizedStringDatatype,
) -> Result<Self, NormalizedStringDatatype>
fn try_from( value: NormalizedStringDatatype, ) -> Result<Self, NormalizedStringDatatype>
Performs the conversion.
Source§impl TryFrom<StringDatatype> for NormalizedStringDatatype
impl TryFrom<StringDatatype> for NormalizedStringDatatype
Source§type Error = StringDatatype
type Error = StringDatatype
The type returned in the event of a conversion error.
Source§fn try_from(value: StringDatatype) -> Result<Self, StringDatatype>
fn try_from(value: StringDatatype) -> Result<Self, StringDatatype>
Performs the conversion.
impl Copy for NormalizedStringDatatype
impl Eq for NormalizedStringDatatype
impl StructuralPartialEq for NormalizedStringDatatype
Auto Trait Implementations§
impl Freeze for NormalizedStringDatatype
impl RefUnwindSafe for NormalizedStringDatatype
impl Send for NormalizedStringDatatype
impl Sync for NormalizedStringDatatype
impl Unpin for NormalizedStringDatatype
impl UnwindSafe for NormalizedStringDatatype
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