pub struct ParquetOptions {
pub enable_list_inference: Option<bool>,
pub enum_as_string: Option<bool>,
pub map_target_type: Option<String>,
}Expand description
Parquet Options for load and make external tables.
This type is not used in any activity, and only used as part of another schema.
Fields§
§enable_list_inference: Option<bool>Optional. Indicates whether to use schema inference specifically for Parquet LIST logical type.
enum_as_string: Option<bool>Optional. Indicates whether to infer Parquet ENUM logical type as STRING instead of BYTES by default.
map_target_type: Option<String>Optional. Indicates how to represent a Parquet map if present.
Trait Implementations§
Source§impl Clone for ParquetOptions
impl Clone for ParquetOptions
Source§fn clone(&self) -> ParquetOptions
fn clone(&self) -> ParquetOptions
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 ParquetOptions
impl Debug for ParquetOptions
Source§impl Default for ParquetOptions
impl Default for ParquetOptions
Source§fn default() -> ParquetOptions
fn default() -> ParquetOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ParquetOptions
impl<'de> Deserialize<'de> for ParquetOptions
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for ParquetOptions
impl Serialize for ParquetOptions
impl Part for ParquetOptions
Auto Trait Implementations§
impl Freeze for ParquetOptions
impl RefUnwindSafe for ParquetOptions
impl Send for ParquetOptions
impl Sync for ParquetOptions
impl Unpin for ParquetOptions
impl UnwindSafe for ParquetOptions
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