pub trait FileProvider {
    // Required method
    fn read_file(&self, name: &str) -> Option<Box<str>>;
}

Required Methods§

source

fn read_file(&self, name: &str) -> Option<Box<str>>

Gets the contents of the file with the specified name

Implementors§