pub struct VNode {
pub vnode_type: &'static str,
pub children: Vec<VNode>,
pub classes: Vec<String>,
pub text: Option<String>,
}
Fields§
§vnode_type: &'static str
§children: Vec<VNode>
§classes: Vec<String>
§text: Option<String>
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