Trait completest::Runtime
source · pub trait Runtime {
// Required methods
fn home(&self) -> &Path;
fn register(&mut self, name: &str, content: &str) -> Result<()>;
fn complete(&mut self, input: &str, term: &Term) -> Result<String>;
}Required Methods§
Implementors§
impl Runtime for BashRuntime
Available on Unix only.
impl Runtime for ElvishRuntime
Available on Unix only.
impl Runtime for FishRuntime
Available on Unix only.
impl Runtime for NuRuntime
Available on crate feature
nu only.impl Runtime for ZshRuntime
Available on Unix only.