pub struct EncryptionData<'a> {
pub content: &'a str,
pub salt: &'a str,
}
Fields§
§content: &'a str
§salt: &'a str
Trait Implementations§
Source§impl<'a> Clone for EncryptionData<'a>
impl<'a> Clone for EncryptionData<'a>
Source§fn clone(&self) -> EncryptionData<'a>
fn clone(&self) -> EncryptionData<'a>
Returns a copy 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 moreAuto Trait Implementations§
impl<'a> Freeze for EncryptionData<'a>
impl<'a> RefUnwindSafe for EncryptionData<'a>
impl<'a> Send for EncryptionData<'a>
impl<'a> Sync for EncryptionData<'a>
impl<'a> Unpin for EncryptionData<'a>
impl<'a> UnwindSafe for EncryptionData<'a>
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