pub trait ShellExpandTrait {
    // Required methods
    fn expand(&self) -> PathBuf;
    fn complete(&self, force: bool) -> SmallVec<[String; 128]>;
}

Required Methods§

source

fn expand(&self) -> PathBuf

source

fn complete(&self, force: bool) -> SmallVec<[String; 128]>

Implementations on Foreign Types§

source§

impl ShellExpandTrait for Path

source§

fn expand(&self) -> PathBuf

source§

fn complete(&self, force: bool) -> SmallVec<[String; 128]>

Implementors§