Enum language_tags::ValidationError
source · [−]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.
MultipleExtendedLanguageSubtags
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
sourceimpl Clone for ValidationError
impl Clone for ValidationError
sourcefn clone(&self) -> ValidationError
fn clone(&self) -> ValidationError
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ValidationError
impl Debug for ValidationError
sourceimpl Display for ValidationError
impl Display for ValidationError
sourceimpl Error for ValidationError
impl Error for ValidationError
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
backtrace
)Returns a stack backtrace, if available, of where this error occurred. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
use the Display impl or to_string()
sourceimpl PartialEq<ValidationError> for ValidationError
impl PartialEq<ValidationError> for ValidationError
impl Eq for ValidationError
impl StructuralEq for ValidationError
impl StructuralPartialEq for ValidationError
Auto Trait Implementations
impl RefUnwindSafe for ValidationError
impl Send for ValidationError
impl Sync for ValidationError
impl Unpin for ValidationError
impl UnwindSafe for ValidationError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more