Struct kuchiki::ElementData[][src]

pub struct ElementData {
    pub name: QualName,
    pub attributes: RefCell<Attributes>,
    pub template_contents: Option<NodeRef>,
}

Data specific to element nodes.

Fields

The namespace and local name of the element, such as ns!(html) and body.

The attributes of the elements.

If the element is an HTML <template> element, the document fragment node that is the root of template contents.

Trait Implementations

impl Debug for ElementData
[src]

Formats the value using the given formatter. Read more

impl PartialEq for ElementData
[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 ElementData
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl !Send for ElementData

impl !Sync for ElementData