pub trait SycamoreElement {
    const TAG_NAME: &'static str;
    const NAME_SPACE: Option<&'static str>;
}
Expand description

Represents an element (i.e. div, p, etc…).

Required Associated Constants

The tag name of the element.

The namespace of the element, or None, e.g. in the case of standard HTML5 elements.

Implementors

source

impl SycamoreElement for article