Enum ascii_tree::Tree [] [src]

pub enum Tree {
    Node(StringVec<Tree>),
    Leaf(Vec<String>),
}

Variants

Trait Implementations

impl Clone for Tree
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Tree

impl Sync for Tree