[][src]Enum wain_syntax_text::Error

pub enum Error<'source> {
    Parse(Box<ParseError<'source>>),
    Transform(Box<TransformError<'source>>),
    Compose(Box<ComposeError<'source>>),
}

Variants

Parse(Box<ParseError<'source>>)
Transform(Box<TransformError<'source>>)
Compose(Box<ComposeError<'source>>)

Implementations

impl<'s> Error<'s>[src]

pub fn location(&self) -> (&'s str, usize)[src]

Trait Implementations

impl<'s> Display for Error<'s>[src]

impl<'s> From<Box<ComposeError<'s>>> for Error<'s>[src]

impl<'s> From<Box<ParseError<'s>>> for Error<'s>[src]

impl<'s> From<Box<TransformError<'s>>> for Error<'s>[src]

Auto Trait Implementations

impl<'source> RefUnwindSafe for Error<'source>

impl<'source> Send for Error<'source>

impl<'source> Sync for Error<'source>

impl<'source> Unpin for Error<'source>

impl<'source> UnwindSafe for Error<'source>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[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.