#[non_exhaustive]pub struct IcebergOptions {
pub metadata_location: String,
/* private fields */
}Expand description
Describes Iceberg data format.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.metadata_location: StringOptional. The location of where the iceberg metadata is present, must be within the table path
Implementations§
Source§impl IcebergOptions
impl IcebergOptions
pub fn new() -> Self
Sourcepub fn set_metadata_location<T: Into<String>>(self, v: T) -> Self
pub fn set_metadata_location<T: Into<String>>(self, v: T) -> Self
Sets the value of metadata_location.
Trait Implementations§
Source§impl Clone for IcebergOptions
impl Clone for IcebergOptions
Source§fn clone(&self) -> IcebergOptions
fn clone(&self) -> IcebergOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for IcebergOptions
impl Debug for IcebergOptions
Source§impl Default for IcebergOptions
impl Default for IcebergOptions
Source§fn default() -> IcebergOptions
fn default() -> IcebergOptions
Returns the “default value” for a type. Read more
Source§impl Message for IcebergOptions
impl Message for IcebergOptions
Source§impl PartialEq for IcebergOptions
impl PartialEq for IcebergOptions
impl StructuralPartialEq for IcebergOptions
Auto Trait Implementations§
impl Freeze for IcebergOptions
impl RefUnwindSafe for IcebergOptions
impl Send for IcebergOptions
impl Sync for IcebergOptions
impl Unpin for IcebergOptions
impl UnwindSafe for IcebergOptions
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