pub struct CreateCatalogBuilder { /* private fields */ }Expand description
Builder for creating a catalog
Implementations§
Source§impl CreateCatalogBuilder
impl CreateCatalogBuilder
Sourcepub fn with_comment(self, comment: impl Into<Option<String>>) -> Self
pub fn with_comment(self, comment: impl Into<Option<String>>) -> Self
User-provided free-form text description.
Sourcepub fn with_properties<I, K, V>(self, properties: I) -> Self
pub fn with_properties<I, K, V>(self, properties: I) -> Self
A map of key-value properties attached to the securable.
Sourcepub fn with_storage_root(self, storage_root: impl Into<Option<String>>) -> Self
pub fn with_storage_root(self, storage_root: impl Into<Option<String>>) -> Self
Storage root URL for managed tables within catalog.
Sourcepub fn with_provider_name(
self,
provider_name: impl Into<Option<String>>,
) -> Self
pub fn with_provider_name( self, provider_name: impl Into<Option<String>>, ) -> Self
The name of delta sharing provider.
A Delta Sharing catalog is a catalog that is based on a Delta share on a remote sharing server.
The name of the share under the share provider.
Trait Implementations§
Source§impl IntoFuture for CreateCatalogBuilder
impl IntoFuture for CreateCatalogBuilder
Source§type IntoFuture = Pin<Box<dyn Future<Output = <CreateCatalogBuilder as IntoFuture>::Output> + Send>>
type IntoFuture = Pin<Box<dyn Future<Output = <CreateCatalogBuilder as IntoFuture>::Output> + Send>>
Which kind of future are we turning this into?
Source§fn into_future(self) -> Self::IntoFuture
fn into_future(self) -> Self::IntoFuture
Creates a future from a value. Read more
Auto Trait Implementations§
impl !RefUnwindSafe for CreateCatalogBuilder
impl !UnwindSafe for CreateCatalogBuilder
impl Freeze for CreateCatalogBuilder
impl Send for CreateCatalogBuilder
impl Sync for CreateCatalogBuilder
impl Unpin for CreateCatalogBuilder
impl UnsafeUnpin for CreateCatalogBuilder
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more