pub struct GetTableBuilder { /* private fields */ }Expand description
Builder for getting a table
Implementations§
Source§impl GetTableBuilder
impl GetTableBuilder
Sourcepub fn with_include_delta_metadata(
self,
include_delta_metadata: impl Into<Option<bool>>,
) -> Self
pub fn with_include_delta_metadata( self, include_delta_metadata: impl Into<Option<bool>>, ) -> Self
Whether delta metadata should be included in the response.
Sourcepub fn with_include_browse(
self,
include_browse: impl Into<Option<bool>>,
) -> Self
pub fn with_include_browse( self, include_browse: impl Into<Option<bool>>, ) -> Self
Whether to include tables in the response for which the principal can only access selective metadata for
Sourcepub fn with_include_manifest_capabilities(
self,
include_manifest_capabilities: impl Into<Option<bool>>,
) -> Self
pub fn with_include_manifest_capabilities( self, include_manifest_capabilities: impl Into<Option<bool>>, ) -> Self
Whether to include a manifest containing capabilities the table has.
Trait Implementations§
Source§impl IntoFuture for GetTableBuilder
impl IntoFuture for GetTableBuilder
Source§type IntoFuture = Pin<Box<dyn Future<Output = <GetTableBuilder as IntoFuture>::Output> + Send>>
type IntoFuture = Pin<Box<dyn Future<Output = <GetTableBuilder 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 GetTableBuilder
impl !UnwindSafe for GetTableBuilder
impl Freeze for GetTableBuilder
impl Send for GetTableBuilder
impl Sync for GetTableBuilder
impl Unpin for GetTableBuilder
impl UnsafeUnpin for GetTableBuilder
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