pub trait Sources {
    fn get(&self, source: &str) -> Result<Option<PathBuf>, String>;

    fn get_or_append(
        &self,
        source: &str,
        missing: &mut Vec<String>
    ) -> Result<Option<PathBuf>, String> { ... } }

Required methods

Get data from specified source.

Provided methods

Implementors