Struct select::node::Raw [] [src]

pub struct Raw {
    pub index: usize,
    pub parent: Option<usize>,
    pub prev: Option<usize>,
    pub next: Option<usize>,
    pub first_child: Option<usize>,
    pub last_child: Option<usize>,
    pub data: Data,
}

Internal representation of a Node. Not of much use without a reference to a Document.

Fields

Trait Implementations

impl Clone for Raw
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Raw
[src]

Formats the value using the given formatter.

impl PartialEq for Raw
[src]

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

This method tests for !=.