pub struct BlockNode {
pub name: String,
pub attributes: HashMap<String, NodeAttributeValue>,
pub children: Vec<Node>,
}
Fields§
§name: String
§attributes: HashMap<String, NodeAttributeValue>
§children: Vec<Node>
Trait Implementations§
impl StructuralPartialEq for BlockNode
Auto Trait Implementations§
impl Freeze for BlockNode
impl RefUnwindSafe for BlockNode
impl Send for BlockNode
impl Sync for BlockNode
impl Unpin for BlockNode
impl UnwindSafe for BlockNode
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