Struct fst::raw::Transition[][src]

pub struct Transition {
    pub inp: u8,
    pub out: Output,
    pub addr: CompiledAddr,
}

A transition from one note to another.

Fields

The byte input associated with this transition.

The output associated with this transition.

The address of the node that this transition points to.

Trait Implementations

impl Copy for Transition
[src]

impl Clone for Transition
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Hash for Transition
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Eq for Transition
[src]

impl PartialEq for Transition
[src]

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

This method tests for !=.

impl Default for Transition
[src]

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

impl Debug for Transition
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Transition

impl Sync for Transition