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

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

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

Fields

index: usize parent: Option<usize> prev: Option<usize> next: Option<usize> data: Data

Trait Implementations

impl PartialEq for Raw
[src]

fn eq(&self, __arg_0: &Raw) -> bool

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

fn ne(&self, __arg_0: &Raw) -> bool

This method tests for !=.

impl Debug for Raw
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Clone for Raw
[src]

fn clone(&self) -> Raw

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more