pub struct EncryptResult {
pub ciphertext: Vec<u8>,
}Expand description
Result of encryption.
Fields§
§ciphertext: Vec<u8>Trait Implementations§
Source§impl Clone for EncryptResult
impl Clone for EncryptResult
Source§fn clone(&self) -> EncryptResult
fn clone(&self) -> EncryptResult
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 moreAuto Trait Implementations§
impl Freeze for EncryptResult
impl RefUnwindSafe for EncryptResult
impl Send for EncryptResult
impl Sync for EncryptResult
impl Unpin for EncryptResult
impl UnsafeUnpin for EncryptResult
impl UnwindSafe for EncryptResult
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