Struct parquet_format_safe::AesGcmV1
source · pub struct AesGcmV1 {
pub aad_prefix: Option<Vec<u8>>,
pub aad_file_unique: Option<Vec<u8>>,
pub supply_aad_prefix: Option<bool>,
}
Fields§
§aad_prefix: Option<Vec<u8>>
AAD prefix *
aad_file_unique: Option<Vec<u8>>
Unique file identifier part of AAD suffix *
supply_aad_prefix: Option<bool>
In files encrypted with AAD prefix without storing it, readers must supply the prefix *
Implementations§
source§impl AesGcmV1
impl AesGcmV1
pub fn new<F1, F2, F3>( aad_prefix: F1, aad_file_unique: F2, supply_aad_prefix: F3 ) -> AesGcmV1
pub fn read_from_in_protocol<T: TInputProtocol>( i_prot: &mut T ) -> Result<AesGcmV1>
pub async fn stream_from_in_protocol<T: TInputStreamProtocol>( i_prot: &mut T ) -> Result<AesGcmV1>
pub fn write_to_out_protocol<T: TOutputProtocol>( &self, o_prot: &mut T ) -> Result<usize>
pub async fn write_to_out_stream_protocol<T: TOutputStreamProtocol>( &self, o_prot: &mut T ) -> Result<usize>
Trait Implementations§
source§impl AsyncReadThrift for AesGcmV1
impl AsyncReadThrift for AesGcmV1
fn stream_from_in_protocol<'life0, 'async_trait, T>(
i_prot: &'life0 mut T
) -> Pin<Box<dyn Future<Output = Result<AesGcmV1>> + Send + 'async_trait>>where
T: 'async_trait + TInputStreamProtocol,
'life0: 'async_trait,
source§impl Ord for AesGcmV1
impl Ord for AesGcmV1
source§impl PartialEq for AesGcmV1
impl PartialEq for AesGcmV1
source§impl PartialOrd for AesGcmV1
impl PartialOrd for AesGcmV1
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl ReadThrift for AesGcmV1
impl ReadThrift for AesGcmV1
fn read_from_in_protocol<T: TInputProtocol>(i_prot: &mut T) -> Result<AesGcmV1>
impl Eq for AesGcmV1
impl StructuralPartialEq for AesGcmV1
Auto Trait Implementations§
impl Freeze for AesGcmV1
impl RefUnwindSafe for AesGcmV1
impl Send for AesGcmV1
impl Sync for AesGcmV1
impl Unpin for AesGcmV1
impl UnwindSafe for AesGcmV1
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