pub trait SourceProvider: Send + Sync {
    fn read<'a>(&'a self, file: &Path) -> Result<&'a str>;
}

Required methods

Implementors