Struct parquet::file::properties::ReaderProperties
source · pub struct ReaderProperties { /* private fields */ }
Expand description
Configuration settings for reading parquet files.
All properties are immutable and Send
+ Sync
.
Use ReaderPropertiesBuilder
to assemble these properties.
§Example
use parquet::file::properties::ReaderProperties;
// Create properties with default configuration.
let props = ReaderProperties::builder().build();
// Use properties builder to set certain options and assemble the configuration.
let props = ReaderProperties::builder()
.set_backward_compatible_lz4(false)
.build();
Implementations§
source§impl ReaderProperties
impl ReaderProperties
sourcepub fn builder() -> ReaderPropertiesBuilder
pub fn builder() -> ReaderPropertiesBuilder
Returns builder for reader properties with default values.
Auto Trait Implementations§
impl Freeze for ReaderProperties
impl RefUnwindSafe for ReaderProperties
impl Send for ReaderProperties
impl Sync for ReaderProperties
impl Unpin for ReaderProperties
impl UnwindSafe for ReaderProperties
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