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.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".