pub struct Decrypted {
pub plaintext: Vec<u8>,
pub version: SqlCipherVersion,
pub page_size: u32,
}Expand description
A decrypted database: the reconstructed plaintext bytes plus the profile that decrypted them.
Fields§
§plaintext: Vec<u8>A valid, standalone plaintext SQLite file — feed straight to
crate::Database::open.
version: SqlCipherVersionThe SQLCipher profile that authenticated the pages.
page_size: u32Logical page size in bytes.
Auto Trait Implementations§
impl Freeze for Decrypted
impl RefUnwindSafe for Decrypted
impl Send for Decrypted
impl Sync for Decrypted
impl Unpin for Decrypted
impl UnsafeUnpin for Decrypted
impl UnwindSafe for Decrypted
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