pub struct Mindmap {
pub path: PathBuf,
pub lines: Vec<String>,
pub nodes: Vec<Node>,
pub by_id: HashMap<u32, usize>,
}Fields§
§path: PathBuf§lines: Vec<String>§nodes: Vec<Node>§by_id: HashMap<u32, usize>Implementations§
Trait Implementations§
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