Struct linefeed::complete::DummyCompleter [] [src]

pub struct DummyCompleter;

Completer type that performs no completion

This is the default Completer for a new Prompter instance.

Trait Implementations

impl<Term: Terminal> Completer<Term> for DummyCompleter
[src]

[src]

Returns the set of possible completions for the prefix word.

[src]

Returns the starting position of the word under the cursor. Read more

[src]

Quotes a possible completion for insertion into input. Read more

[src]

Unquotes a piece of user input before searching for completions. Read more

Auto Trait Implementations