pub enum VNode {
Element {
tag: String,
attrs: Vec<(String, VAttr)>,
children: Vec<VNode>,
},
Text(String),
}Expand description
A simple virtual DOM node
Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for VNode
impl !RefUnwindSafe for VNode
impl !Send for VNode
impl !Sync for VNode
impl Unpin for VNode
impl !UnwindSafe for VNode
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