Struct voidmap::Node [] [src]

pub struct Node {
    pub rooted_coords: Coords,
    pub parent_id: NodeID,
    pub id: NodeID,
    pub content: String,
    pub children: Vec<NodeID>,
    pub selected: bool,
    pub collapsed: bool,
    pub stricken: bool,
    pub hide_stricken: bool,
    pub meta: Meta,
    pub free_text: Option<String>,
    pub color: String,
    pub auto_arrange: bool,
}

Fields

Methods

impl Node
[src]

Trait Implementations

impl Debug for Node
[src]

Formats the value using the given formatter.

impl Clone for Node
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for Node
[src]

Returns the "default value" for a type. Read more