pub struct RecordProfile {
pub encoding: Encoding,
pub encryption: EncryptionProfile,
pub compression: CompressionProfile,
}Expand description
Extraction profile facts for a record.
Fields§
§encoding: EncodingAU3 encoding profile used for record metadata and payload decryption.
encryption: EncryptionProfileCryptographic stream used for decryption.
compression: CompressionProfileCompression wrapper/profile observed for payload data.
Trait Implementations§
Source§impl Clone for RecordProfile
impl Clone for RecordProfile
Source§fn clone(&self) -> RecordProfile
fn clone(&self) -> RecordProfile
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for RecordProfile
Source§impl Debug for RecordProfile
impl Debug for RecordProfile
impl Eq for RecordProfile
Source§impl PartialEq for RecordProfile
impl PartialEq for RecordProfile
impl StructuralPartialEq for RecordProfile
Auto Trait Implementations§
impl Freeze for RecordProfile
impl RefUnwindSafe for RecordProfile
impl Send for RecordProfile
impl Sync for RecordProfile
impl Unpin for RecordProfile
impl UnsafeUnpin for RecordProfile
impl UnwindSafe for RecordProfile
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