pub enum TranslationBundleError {
ReadFtl(Error),
ParseFtl(ParserError),
AddResource(FluentError),
MissingLocale,
ReadLocalesDir(Error),
ReadLocalesDirEntry(Error),
LocaleIsNotDir,
}
Variants§
ReadFtl(Error)
Failed to read from .ftl
file.
ParseFtl(ParserError)
Failed to parse contents of .ftl
file.
AddResource(FluentError)
Failed to add FluentResource
to FluentBundle
.
MissingLocale
$sysroot/share/locale/$locale
does not exist.
ReadLocalesDir(Error)
Cannot read directory entries of $sysroot/share/locale/$locale
.
ReadLocalesDirEntry(Error)
Cannot read directory entry of $sysroot/share/locale/$locale
.
LocaleIsNotDir
$sysroot/share/locale/$locale
is not a directory.
Trait Implementations§
Source§impl Debug for TranslationBundleError
impl Debug for TranslationBundleError
Source§impl Display for TranslationBundleError
impl Display for TranslationBundleError
Source§impl Error for TranslationBundleError
impl Error for TranslationBundleError
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<(FluentResource, Vec<ParserError>)> for TranslationBundleError
impl From<(FluentResource, Vec<ParserError>)> for TranslationBundleError
Source§fn from((_, errs): (FluentResource, Vec<ParserError>)) -> Self
fn from((_, errs): (FluentResource, Vec<ParserError>)) -> Self
Converts to this type from the input type.
Source§impl From<Vec<FluentError>> for TranslationBundleError
impl From<Vec<FluentError>> for TranslationBundleError
Source§fn from(errs: Vec<FluentError>) -> Self
fn from(errs: Vec<FluentError>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl DynSend for TranslationBundleError
impl DynSync for TranslationBundleError
impl Freeze for TranslationBundleError
impl !RefUnwindSafe for TranslationBundleError
impl Send for TranslationBundleError
impl Sync for TranslationBundleError
impl Unpin for TranslationBundleError
impl !UnwindSafe for TranslationBundleError
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>
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> 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: 80 bytes
Size for each variant:
ReadFtl
: 8 bytesParseFtl
: 72 bytesAddResource
: 72 bytesMissingLocale
: 0 bytesReadLocalesDir
: 8 bytesReadLocalesDirEntry
: 8 bytesLocaleIsNotDir
: 0 bytes