Enum itc::IdTree [] [src]

pub enum IdTree {
    Leaf {
        i: bool,
    },
    Node {
        left: Box<IdTree>,
        right: Box<IdTree>,
    },
}

Variants

Fields of Leaf

Fields of Node

Methods

impl IdTree
[src]

Trait Implementations

impl Display for IdTree
[src]

Formats the value using the given formatter. Read more

impl FromStr for IdTree
[src]

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. Read more

impl Debug for IdTree
[src]

Formats the value using the given formatter.

impl Clone for IdTree
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for IdTree
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Normalisable for IdTree
[src]

impl Split for IdTree
[src]

impl Sum for IdTree
[src]