Trait ezno_lib::ReadFromFS

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

Required Methods§

Implementors§

source§

impl<T> ReadFromFS for T
where T: Fn(&Path) -> Option<String>,