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