Enum html_editor::Node
source · [−]pub enum Node {
Element {
name: String,
attrs: Vec<(String, String)>,
children: Vec<Node>,
},
Text(String),
Comment(String),
Doctype,
}Expand description
Basic node of dom
Variants
Element
Text(String)
Comment(String)
Doctype
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Node
impl UnwindSafe for Node
Blanket Implementations
Mutably borrows from an owned value. Read more