Enum html5ever::rcdom::ElementEnum [] [src]

pub enum ElementEnum {
    Normal,
    Script(bool),
    Template(Handle),
}

The different kinds of elements in the DOM.

Variants

NormalScript(bool)

A script element and its "already started" flag. https://html.spec.whatwg.org/multipage/#already-started

Template(Handle)

A template element and its template contents. https://html.spec.whatwg.org/multipage/#template-contents

Trait Implementations

impl Debug for ElementEnum
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.