pub struct EncryptedDocument(pub Vec<u8>);Expand description
Holds bytes of an aes encrypted value
Tuple Fields§
§0: Vec<u8>Trait Implementations§
Source§impl Clone for EncryptedDocument
impl Clone for EncryptedDocument
Source§fn clone(&self) -> EncryptedDocument
fn clone(&self) -> EncryptedDocument
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 EncryptedDocument
impl Debug for EncryptedDocument
Source§impl PartialEq for EncryptedDocument
impl PartialEq for EncryptedDocument
impl Eq for EncryptedDocument
impl StructuralPartialEq for EncryptedDocument
Auto Trait Implementations§
impl Freeze for EncryptedDocument
impl RefUnwindSafe for EncryptedDocument
impl Send for EncryptedDocument
impl Sync for EncryptedDocument
impl Unpin for EncryptedDocument
impl UnwindSafe for EncryptedDocument
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