pub struct Element {
    pub name: String,
    pub attributes: HashMap<String, Pattern>,
    pub mandatory_attributes: HashMap<String, String>,
}
Expand description

structure to describe HTML element

Fields

name: String

name of an element

attributes: HashMap<String, Pattern>

Whitelist of allowed attributes

mandatory_attributes: HashMap<String, String>

List of mandatory atributes and their values. These attributes will be forcibly added to element.

Implementations

Creates element descriptor

Adds an attribute

Adds mandatory attribute

Checks if attribute is valid

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.