Trait deltalake::storage::ObjectStoreFactory

source ·
pub trait ObjectStoreFactory: Send + Sync {
    // Required method
    fn parse_url_opts(
        &self,
        url: &Url,
        options: &StorageOptions
    ) -> Result<(Arc<dyn ObjectStore>, Path), DeltaTableError>;
}
Expand description

Factory trait for creating ObjectStoreRef instances at runtime

Required Methods§

Implementations on Foreign Types§

source§

impl ObjectStoreFactory for S3ObjectStoreFactory

source§

impl ObjectStoreFactory for AzureFactory

source§

impl ObjectStoreFactory for GcpFactory

Implementors§