[][src]Enum ramhorns::Error

pub enum Error {
    Io(Error),
    UnclosedSection(Box<str>),
    UnclosedTag,
}

Error type used that can be emitted during template parsing.

Variants

Io(Error)

There was an error with the IO (only happens when parsing a file)

UnclosedSection(Box<str>)

Parser was expecting a tag closing a section {{/foo}}, but never found it or found a different one.

UnclosedTag

Parser was expecting to find the closing braces of a tag }}, but never found it.

Trait Implementations

impl From<Error> for Error[src]

impl Display for Error[src]

impl Debug for Error[src]

Auto Trait Implementations

impl Send for Error

impl Sync for Error

Blanket Implementations

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

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.