Trait DenoJsonCache

Source
pub trait DenoJsonCache {
    // Required methods
    fn get(&self, path: &Path) -> Option<ConfigFileRc>;
    fn set(&self, path: PathBuf, deno_json: ConfigFileRc);
}

Required Methods§

Source

fn get(&self, path: &Path) -> Option<ConfigFileRc>

Source

fn set(&self, path: PathBuf, deno_json: ConfigFileRc)

Implementors§