pub trait ObjectStoreFactory: Send + Sync {
// Required method
fn parse_url_opts(
&self,
url: &Url,
options: &StorageOptions,
) -> DeltaResult<(ObjectStoreRef, Path)>;
}
Expand description
Factory trait for creating ObjectStoreRef instances at runtime