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]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for TransformationError
[src]

[src]

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

[src]

This method tests for !=.

impl Error for TransformationError
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

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

impl Display for TransformationError
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations