Struct clang::documentation::HtmlStartTag [] [src]

pub struct HtmlStartTag {
    pub name: String,
    pub attributes: Vec<(String, String)>,
    pub closing: bool,
}

An HTML start tag.

Fields

The tag name.

The attributes associated with the tag, if any.

Whether the tag is self-closing.

Trait Implementations

impl Clone for HtmlStartTag
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for HtmlStartTag
[src]

Formats the value using the given formatter.

impl PartialEq for HtmlStartTag
[src]

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

This method tests for !=.

impl Eq for HtmlStartTag
[src]