Parser

Trait Parser 

Source
pub trait Parser {
    // Required methods
    fn reset(&mut self);
    fn parse<F: FnMut(Event)>(&mut self, key: Key, selection: bool, callback: F);
}

Required Methods§

Source

fn reset(&mut self)

Source

fn parse<F: FnMut(Event)>(&mut self, key: Key, selection: bool, callback: F)

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§