pub struct DataEncrypt {
pub enc_data: Vec<u8>,
pub enc_key: Vec<u8>,
pub condensed_mac: Vec<u8>,
}Fields§
§enc_data: Vec<u8>§enc_key: Vec<u8>§condensed_mac: Vec<u8>Implementations§
Source§impl DataEncrypt
impl DataEncrypt
Trait Implementations§
Source§impl Clone for DataEncrypt
impl Clone for DataEncrypt
Source§fn clone(&self) -> DataEncrypt
fn clone(&self) -> DataEncrypt
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 moreAuto Trait Implementations§
impl Freeze for DataEncrypt
impl RefUnwindSafe for DataEncrypt
impl Send for DataEncrypt
impl Sync for DataEncrypt
impl Unpin for DataEncrypt
impl UnsafeUnpin for DataEncrypt
impl UnwindSafe for DataEncrypt
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