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

A trait to provide the contents of files to a Bundler.

See FileProvider for an implementation that uses the file system.

Required Methods

Reads the contents of the given file path to a string.

Implementors