pub struct ParquetColumnOptions {
pub bloom_filter_enabled_opt: Option<BloomFilterEnabledOpt>,
pub encoding_opt: Option<EncodingOpt>,
pub dictionary_enabled_opt: Option<DictionaryEnabledOpt>,
pub compression_opt: Option<CompressionOpt>,
pub statistics_enabled_opt: Option<StatisticsEnabledOpt>,
pub bloom_filter_fpp_opt: Option<BloomFilterFppOpt>,
pub bloom_filter_ndv_opt: Option<BloomFilterNdvOpt>,
pub max_statistics_size_opt: Option<MaxStatisticsSizeOpt>,
}
Fields§
§bloom_filter_enabled_opt: Option<BloomFilterEnabledOpt>
§encoding_opt: Option<EncodingOpt>
§dictionary_enabled_opt: Option<DictionaryEnabledOpt>
§compression_opt: Option<CompressionOpt>
§statistics_enabled_opt: Option<StatisticsEnabledOpt>
§bloom_filter_fpp_opt: Option<BloomFilterFppOpt>
§bloom_filter_ndv_opt: Option<BloomFilterNdvOpt>
§max_statistics_size_opt: Option<MaxStatisticsSizeOpt>
Trait Implementations§
Source§impl Clone for ParquetColumnOptions
impl Clone for ParquetColumnOptions
Source§fn clone(&self) -> ParquetColumnOptions
fn clone(&self) -> ParquetColumnOptions
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 ParquetColumnOptions
impl Debug for ParquetColumnOptions
Source§impl Default for ParquetColumnOptions
impl Default for ParquetColumnOptions
Source§impl From<ParquetColumnOptions> for ParquetColumnOptions
impl From<ParquetColumnOptions> for ParquetColumnOptions
Source§fn from(proto: ParquetColumnOptionsProto) -> Self
fn from(proto: ParquetColumnOptionsProto) -> Self
Converts to this type from the input type.
Source§impl Message for ParquetColumnOptions
impl Message for ParquetColumnOptions
Source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
Source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
Encodes the message to a buffer. Read more
Source§fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message to a newly allocated buffer.
Source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
Encodes the message with a length-delimiter to a buffer. Read more
Source§fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message with a length-delimiter to a newly allocated buffer.
Source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes an instance of the message from a buffer. Read more
Source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes a length-delimited instance of the message from the buffer.
Source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes an instance of the message from a buffer, and merges it into
self
. Read moreSource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes a length-delimited instance of the message from buffer, and
merges it into
self
.Source§impl PartialEq for ParquetColumnOptions
impl PartialEq for ParquetColumnOptions
impl StructuralPartialEq for ParquetColumnOptions
Auto Trait Implementations§
impl Freeze for ParquetColumnOptions
impl RefUnwindSafe for ParquetColumnOptions
impl Send for ParquetColumnOptions
impl Sync for ParquetColumnOptions
impl Unpin for ParquetColumnOptions
impl UnwindSafe for ParquetColumnOptions
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more