pub struct Mindmap {
pub root: MindmapNode,
}Expand description
A parsed mindmap diagram.
Constructed by crate::parser::mindmap::parse and consumed by
crate::render::mindmap::render. The diagram has exactly one root node;
all other nodes are children (or descendants) of that root.
Fields§
§root: MindmapNodeImplementations§
Trait Implementations§
impl Eq for Mindmap
impl StructuralPartialEq for Mindmap
Auto Trait Implementations§
impl Freeze for Mindmap
impl RefUnwindSafe for Mindmap
impl Send for Mindmap
impl Sync for Mindmap
impl Unpin for Mindmap
impl UnsafeUnpin for Mindmap
impl UnwindSafe for Mindmap
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