pub trait Completer<Context: CompletionContext> {
    fn complete(
        &self,
        ctx: &Context,
        partial: &str,
        matcher: &dyn Matcher
    ) -> Vec<Suggestion>
Notable traits for Vec<u8, A>
impl<A> Write for Vec<u8, A> where
    A: Allocator
; }

Required methods

Implementors