Enum itc::EventTree [] [src]

pub enum EventTree {
    Leaf {
        n: u32,
    },
    Node {
        n: u32,
        left: Box<EventTree>,
        right: Box<EventTree>,
    },
}

Variants

Fields of Leaf

Fields of Node

Methods

impl EventTree
[src]

Trait Implementations

impl FromStr for EventTree
[src]

The associated error which can be returned from parsing.

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

impl Display for EventTree
[src]

Formats the value using the given formatter. Read more

impl Debug for EventTree
[src]

Formats the value using the given formatter.

impl Clone for EventTree
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for EventTree
[src]

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

This method tests for !=.

impl Min<u32> for EventTree
[src]

impl Max<u32> for EventTree
[src]

impl Normalisable for EventTree
[src]

impl LessThanOrEqual for EventTree
[src]