pub struct FlatNode {
pub content: Content,
pub children: Vec<NodeRef>,
pub attributes: Attributes,
}Fields§
§content: ContentThe content of the node.
children: Vec<NodeRef>§attributes: AttributesTrait Implementations§
impl Eq for FlatNode
impl StructuralPartialEq for FlatNode
Auto Trait Implementations§
impl Freeze for FlatNode
impl RefUnwindSafe for FlatNode
impl Send for FlatNode
impl Sync for FlatNode
impl Unpin for FlatNode
impl UnwindSafe for FlatNode
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