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)>
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
source§fn eq(&self, other: &FluentError) -> bool
fn eq(&self, other: &FluentError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for FluentError
Auto Trait Implementations§
impl DynSend for FluentError
impl DynSync for FluentError
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> 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>
§impl<T> Pointable for T
impl<T> Pointable for T
source§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