#[non_exhaustive]
pub enum Error {
NotFound,
MalformedData,
Data(DataError),
}
Expand description
A list of error outcomes for various operations in the icu_collator
crate.
Re-exported as Error
.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
NotFound
The requested collation does not exist
MalformedData
Requested data was found but was malformed
Data(DataError)
An error originating inside of the data provider.
Trait Implementations
sourceimpl Debug for CollatorError
impl Debug for CollatorError
sourceimpl Display for CollatorError
impl Display for CollatorError
sourceimpl Error for CollatorError
impl Error for CollatorError
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 From<DataError> for CollatorError
impl From<DataError> for CollatorError
sourcefn from(e: DataError) -> CollatorError
fn from(e: DataError) -> CollatorError
Converts to this type from the input type.
sourceimpl From<PropertiesError> for CollatorError
impl From<PropertiesError> for CollatorError
sourcefn from(e: PropertiesError) -> CollatorError
fn from(e: PropertiesError) -> CollatorError
Converts to this type from the input type.
Auto Trait Implementations
impl RefUnwindSafe for CollatorError
impl Send for CollatorError
impl Sync for CollatorError
impl Unpin for CollatorError
impl UnwindSafe for CollatorError
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