[][src]Enum fluent_templates::LoaderError

pub enum LoaderError {
    Fs {
        path: PathBuf,
        source: Error,
    },
    Fluent {
        source: FluentError,
    },
}

Errors that can occur when loading or parsing fluent resources.

Variants

Fs

An io::Error occurred while interacting with path.

Fields of Fs

path: PathBuf

The path to file with the error.

source: Error

The error source.

Fluent

An error was found in the fluent syntax.

Fields of Fluent

source: FluentError

The original parse errors

Trait Implementations

impl Debug for LoaderError[src]

impl Display for LoaderError[src]

impl Error for LoaderError where
    Self: Debug + Display
[src]

impl ErrorCompat for LoaderError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> AsErrorSource for T where
    T: 'static + Error
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.