Struct mediawiki_parser::TagAttribute[][src]

pub struct TagAttribute {
    pub position: Span,
    pub key: String,
    pub value: String,
}

Represents a pair of html tag attribute and value.

Fields

Methods

impl TagAttribute
[src]

Trait Implementations

impl Debug for TagAttribute
[src]

Formats the value using the given formatter. Read more

impl PartialEq for TagAttribute
[src]

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

This method tests for !=.

impl Clone for TagAttribute
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations