Trait ezno_lib::FSResolver

source ·
pub trait FSResolver {
    // Required method
    fn get_content_at_path(&self, path: &Path) -> Option<String>;
}

Required Methods§

Implementors§

source§

impl<T> FSResolver for Twhere T: Fn(&Path) -> Option<String>,