Trait WalkHistory

Source
pub trait WalkHistory:
    Copy
    + Clone
    + Default
    + Deref<Target = [Option<usize>]>
    + DerefMut {
    // Required method
    fn history() -> usize;
}

Required Methods§

Source

fn history() -> usize

The length of each walk associated with each state. This also determines the delay before the first decoded symbol is yielded.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§