Struct atlatl::fst::Dart [] [src]

pub struct Dart<I, O> {
    pub stipe: Vec<Stipe>,
    pub next: Vec<I>,
    pub output: Vec<O>,
}

The double-array trie, holding the core state machine for the FST.

Fields

Trait Implementations

impl<I: Clone, O: Clone> Clone for Dart<I, O>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<I: Debug, O: Debug> Debug for Dart<I, O>
[src]

Formats the value using the given formatter.

impl<I: Default, O: Default> Default for Dart<I, O>
[src]

Returns the "default value" for a type. Read more

impl<I: Eq, O: Eq> Eq for Dart<I, O>
[src]

impl<I: PartialEq, O: PartialEq> PartialEq for Dart<I, O>
[src]

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

This method tests for !=.