Struct mediawiki_parser::TransformationError[][src]

pub struct TransformationError {
    pub cause: String,
    pub position: Span,
    pub transformation_name: String,
    pub tree: Element,
}

Error structure for syntax tree transformations.

Fields

Trait Implementations

impl Debug for TransformationError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for TransformationError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Error for TransformationError
[src]

This method is soft-deprecated. Read more

The lower-level cause of this error, if any. Read more

impl Display for TransformationError
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations