Struct history_tree::Record [] [src]

pub struct Record {
    pub prev: usize,
    pub parent: usize,
    pub remove: bool,
}

Stores information about a node relation.

Fields

Previous version.

Parent id.

Removes previous nodes.

Trait Implementations

impl Clone for Record
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Record
[src]

Formats the value using the given formatter.

impl PartialEq for Record
[src]

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

This method tests for !=.

impl Eq for Record
[src]