pub enum ValidationError {
DuplicateVariant,
DuplicateExtension,
MultipleExtendedLanguageSubtags,
PrimaryLanguageNotInRegistry,
ExtendedLanguageNotInRegistry,
ScriptNotInRegistry,
RegionNotInRegistry,
VariantNotInRegistry,
WrongExtendedLanguagePrefix,
WrongVariantPrefix,
}Expand description
Errors returned by the LanguageTag validation
Variants§
DuplicateVariant
The same variant subtag is only allowed once in a tag.
DuplicateExtension
The same extension subtag is only allowed once in a tag before the private use part.
only one extended language subtag is allowed
PrimaryLanguageNotInRegistry
The primary language is not in the IANA Language Subtag Registry
ExtendedLanguageNotInRegistry
The extended language is not in the IANA Language Subtag Registry
ScriptNotInRegistry
The script is not in the IANA Language Subtag Registry
RegionNotInRegistry
The region is not in the IANA Language Subtag Registry
VariantNotInRegistry
A variant is not in the IANA Language Subtag Registry
WrongExtendedLanguagePrefix
The primary language is not the expected extended language prefix from the IANA Language Subtag Registry
WrongVariantPrefix
The language tag has not one of the expected variant prefix from the IANA Language Subtag Registry
Trait Implementations§
Source§impl Clone for ValidationError
impl Clone for ValidationError
Source§fn clone(&self) -> ValidationError
fn clone(&self) -> ValidationError
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for ValidationError
impl Debug for ValidationError
Source§impl Display for ValidationError
impl Display for ValidationError
Source§impl Error for ValidationError
impl Error for ValidationError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
use the Display impl or to_string()
Source§impl PartialEq for ValidationError
impl PartialEq for ValidationError
Source§fn eq(&self, other: &ValidationError) -> bool
fn eq(&self, other: &ValidationError) -> bool
self and other values to be equal, and is used by ==.