Enum accessibility_tree::dom::NodeData
source · pub enum NodeData {
Document,
Doctype {
_name: String,
_public_id: String,
_system_id: String,
},
Text {
contents: String,
},
Comment {
_contents: String,
},
Element(ElementData),
ProcessingInstruction {
_target: String,
_contents: String,
},
}
Variants§
Auto Trait Implementations§
impl !Freeze for NodeData
impl !RefUnwindSafe for NodeData
impl Send for NodeData
impl Sync for NodeData
impl Unpin for NodeData
impl UnwindSafe for NodeData
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more