Enum icu::locid::ParserError
source · [−]#[non_exhaustive]
pub enum ParserError {
InvalidLanguage,
InvalidSubtag,
InvalidExtension,
DuplicatedExtension,
}
Expand description
List of parser errors that can be generated
while parsing LanguageIdentifier
, Locale
,
subtags
or extensions
.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
InvalidLanguage
Invalid language subtag.
Examples
use icu::locid::subtags::Language;
use icu::locid::ParserError;
assert_eq!("x2".parse::<Language>(), Err(ParserError::InvalidLanguage));
InvalidSubtag
Invalid script, region or variant subtag.
Examples
use icu::locid::subtags::Region;
use icu::locid::ParserError;
assert_eq!("#@2X".parse::<Region>(), Err(ParserError::InvalidSubtag));
InvalidExtension
Invalid extension subtag.
Examples
use icu::locid::extensions::unicode::Key;
use icu::locid::ParserError;
assert_eq!("#@2X".parse::<Key>(), Err(ParserError::InvalidExtension));
DuplicatedExtension
Duplicated extension.
Examples
use icu::locid::Locale;
use icu::locid::ParserError;
assert_eq!("und-u-hc-h12-u-ca-calendar".parse::<Locale>(), Err(ParserError::DuplicatedExtension));
Trait Implementations
sourceimpl Clone for ParserError
impl Clone for ParserError
sourcefn clone(&self) -> ParserError
fn clone(&self) -> ParserError
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 ParserError
impl Debug for ParserError
sourceimpl Display for ParserError
impl Display for ParserError
sourceimpl Error for ParserError
impl Error for ParserError
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<ParserError> for ParserError
impl PartialEq<ParserError> for ParserError
impl Copy for ParserError
impl StructuralPartialEq for ParserError
Auto Trait Implementations
impl RefUnwindSafe for ParserError
impl Send for ParserError
impl Sync for ParserError
impl Unpin for ParserError
impl UnwindSafe for ParserError
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
sourceimpl<T> Separable for T where
T: Display,
impl<T> Separable for T where
T: Display,
sourcefn separate_by_policy(&self, policy: SeparatorPolicy<'_>) -> String
fn separate_by_policy(&self, policy: SeparatorPolicy<'_>) -> String
Adds separators according to the given SeparatorPolicy
. Read more
sourcefn separate_with_commas(&self) -> String
fn separate_with_commas(&self) -> String
Inserts a comma every three digits from the right. Read more
sourcefn separate_with_spaces(&self) -> String
fn separate_with_spaces(&self) -> String
Inserts a space every three digits from the right. Read more
sourcefn separate_with_dots(&self) -> String
fn separate_with_dots(&self) -> String
Inserts a period every three digits from the right. Read more
sourcefn separate_with_underscores(&self) -> String
fn separate_with_underscores(&self) -> String
Inserts an underscore every three digits from the right. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more