pub struct Rar4EncryptionInfo {
pub salt: [u8; 8],
}Available on crate feature
crypto only.Expand description
RAR 3.x/4.x encryption info from file header.
Fields§
§salt: [u8; 8]8-byte salt from file header
Trait Implementations§
Source§impl Clone for Rar4EncryptionInfo
impl Clone for Rar4EncryptionInfo
Source§fn clone(&self) -> Rar4EncryptionInfo
fn clone(&self) -> Rar4EncryptionInfo
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 Rar4EncryptionInfo
impl Debug for Rar4EncryptionInfo
Source§impl PartialEq for Rar4EncryptionInfo
impl PartialEq for Rar4EncryptionInfo
impl Eq for Rar4EncryptionInfo
impl StructuralPartialEq for Rar4EncryptionInfo
Auto Trait Implementations§
impl Freeze for Rar4EncryptionInfo
impl RefUnwindSafe for Rar4EncryptionInfo
impl Send for Rar4EncryptionInfo
impl Sync for Rar4EncryptionInfo
impl Unpin for Rar4EncryptionInfo
impl UnsafeUnpin for Rar4EncryptionInfo
impl UnwindSafe for Rar4EncryptionInfo
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