pub struct SenderKeyDecryptPlan {
pub next_state: SenderKeyState,
pub plaintext: Vec<u8>,
}Expand description
Result of SenderKeyState::plan_decrypt — apply to commit.
Fields§
§next_state: SenderKeyStateThe state after this decryption.
plaintext: Vec<u8>Recovered plaintext.
Trait Implementations§
Source§impl Clone for SenderKeyDecryptPlan
impl Clone for SenderKeyDecryptPlan
Source§fn clone(&self) -> SenderKeyDecryptPlan
fn clone(&self) -> SenderKeyDecryptPlan
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 moreSource§impl Debug for SenderKeyDecryptPlan
impl Debug for SenderKeyDecryptPlan
impl Eq for SenderKeyDecryptPlan
Source§impl PartialEq for SenderKeyDecryptPlan
impl PartialEq for SenderKeyDecryptPlan
impl StructuralPartialEq for SenderKeyDecryptPlan
Auto Trait Implementations§
impl Freeze for SenderKeyDecryptPlan
impl RefUnwindSafe for SenderKeyDecryptPlan
impl Send for SenderKeyDecryptPlan
impl Sync for SenderKeyDecryptPlan
impl Unpin for SenderKeyDecryptPlan
impl UnsafeUnpin for SenderKeyDecryptPlan
impl UnwindSafe for SenderKeyDecryptPlan
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