pub trait CatalogBuilder:
Default
+ Debug
+ Send
+ Sync {
type C: Catalog;
// Required method
fn load(
self,
name: impl Into<String>,
props: HashMap<String, String>,
) -> impl Future<Output = Result<Self::C>> + Send;
}Expand description
Common interface for all catalog builders.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.