Skip to main content

RemoteRepositoryFactory

Trait RemoteRepositoryFactory 

Source
pub trait RemoteRepositoryFactory: Send + Sync {
    // Required method
    fn build(&self, runtime: &BackendRuntime) -> CoreResult<RepositorySet>;
}
Expand description

Factory interface for building remote repository bundles.

Required Methods§

Source

fn build(&self, runtime: &BackendRuntime) -> CoreResult<RepositorySet>

Build a repository bundle using the provided backend runtime.

Implementors§