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§
Sourcefn build(&self, runtime: &BackendRuntime) -> CoreResult<RepositorySet>
fn build(&self, runtime: &BackendRuntime) -> CoreResult<RepositorySet>
Build a repository bundle using the provided backend runtime.