Struct twig::error::At [] [src]

pub struct At<E: Display> {
    pub loc: Location,
    pub err: E,
}

Pins any error type to source file location.

Fields

Methods

impl<E: Display> At<E>
[src]

Trait Implementations

impl<E: Copy + Display> Copy for At<E>
[src]

impl<E: Clone + Display> Clone for At<E>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<E: Debug + Display> Debug for At<E>
[src]

Formats the value using the given formatter.

impl<E: Display> Display for At<E>
[src]

Formats the value using the given formatter. Read more

impl From<At<CoreTemplateError>> for At<TemplateError>
[src]

Performs the conversion.