Trait datafusion_rustyline::Helper[][src]

pub trait Helper {
    type Completer: Completer;
    type Hinter: Hinter;
    fn completer(&self) -> &Self::Completer;
fn hinter(&self) -> &Self::Hinter; }

Syntax specific helper.

TODO Tokenizer/parser used for both completion, suggestion, highlighting

Associated Types

Required Methods

Implementations on Foreign Types

impl<C: Completer, H: Hinter> Helper for (C, H)
[src]

Implementors