pub struct ParquetEncryptionOptions {
pub file_decryption: Option<ConfigFileDecryptionProperties>,
pub file_encryption: Option<ConfigFileEncryptionProperties>,
}
Expand description
Options for configuring Parquet Modular Encryption
Fields§
§file_decryption: Option<ConfigFileDecryptionProperties>
Optional file decryption properties
file_encryption: Option<ConfigFileEncryptionProperties>
Optional file encryption properties
Trait Implementations§
Source§impl Clone for ParquetEncryptionOptions
impl Clone for ParquetEncryptionOptions
Source§fn clone(&self) -> ParquetEncryptionOptions
fn clone(&self) -> ParquetEncryptionOptions
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 ParquetEncryptionOptions
impl Debug for ParquetEncryptionOptions
Source§impl Default for ParquetEncryptionOptions
impl Default for ParquetEncryptionOptions
Source§fn default() -> ParquetEncryptionOptions
fn default() -> ParquetEncryptionOptions
Returns the “default value” for a type. Read more
Source§impl PartialEq for ParquetEncryptionOptions
impl PartialEq for ParquetEncryptionOptions
impl StructuralPartialEq for ParquetEncryptionOptions
Auto Trait Implementations§
impl Freeze for ParquetEncryptionOptions
impl RefUnwindSafe for ParquetEncryptionOptions
impl Send for ParquetEncryptionOptions
impl Sync for ParquetEncryptionOptions
impl Unpin for ParquetEncryptionOptions
impl UnwindSafe for ParquetEncryptionOptions
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