pub trait Source: SourceClone {
    fn install(&self, dependency: &Dependency, path: &Path) -> Result<()>;

    fn installed(&self, dependency: &Dependency, destination: &Path) -> bool { ... }
fn update_resolver(
        &self,
        resolver: &mut Resolver,
        dependency: &Dependency,
        destination: &Path
    ) { ... } }

Required methods

Provided methods

Implementors