pub enum FluentError {
Overriding {
kind: EntryKind,
id: String,
},
ParserError(ParserError),
ResolverError(ResolverError),
}
Expand description
Core error type for Fluent runtime system.
It contains three main types of errors that may come up during runtime use of the fluent-bundle crate.
Variants§
Overriding
An error which occurs when
FluentBundle::add_resource
adds entries that are already registered in a given FluentBundle
.
§Example
use fluent_bundle::{FluentBundle, FluentResource};
use unic_langid::langid;
let ftl_string = String::from("intro = Welcome, { $name }.");
let res1 = FluentResource::try_new(ftl_string)
.expect("Could not parse an FTL string.");
let ftl_string = String::from("intro = Hi, { $name }.");
let res2 = FluentResource::try_new(ftl_string)
.expect("Could not parse an FTL string.");
let langid_en = langid!("en-US");
let mut bundle = FluentBundle::new(vec![langid_en]);
bundle.add_resource(&res1)
.expect("Failed to add FTL resources to the bundle.");
assert!(bundle.add_resource(&res2).is_err());
ParserError(ParserError)
ResolverError(ResolverError)
Trait Implementations§
source§impl Clone for FluentError
impl Clone for FluentError
source§fn clone(&self) -> FluentError
fn clone(&self) -> FluentError
Returns a copy 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 FluentError
impl Debug for FluentError
source§impl Display for FluentError
impl Display for FluentError
source§impl Error for FluentError
impl Error for FluentError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<ParserError> for FluentError
impl From<ParserError> for FluentError
source§fn from(error: ParserError) -> FluentError
fn from(error: ParserError) -> FluentError
Converts to this type from the input type.
source§impl From<ResolverError> for FluentError
impl From<ResolverError> for FluentError
source§fn from(error: ResolverError) -> FluentError
fn from(error: ResolverError) -> FluentError
Converts to this type from the input type.
source§impl PartialEq for FluentError
impl PartialEq for FluentError
impl Eq for FluentError
impl StructuralPartialEq for FluentError
Auto Trait Implementations§
impl Freeze for FluentError
impl RefUnwindSafe for FluentError
impl Send for FluentError
impl Sync for FluentError
impl Unpin for FluentError
impl UnwindSafe for FluentError
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.source§impl<T> Filterable for T
impl<T> Filterable for T
source§fn filterable(
self,
filter_name: &'static str,
) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>
fn filterable( self, filter_name: &'static str, ) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>
Creates a filterable data provider with the given name for debugging. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
source§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
impl<'a, T> Captures<'a> for Twhere
T: ?Sized,
impl<T> ErasedDestructor for Twhere
T: 'static,
impl<T> MaybeSendSync for T
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 72 bytes
Size for each variant:
Overriding
: 40 bytesParserError
: 72 bytesResolverError
: 64 bytes