pub struct ReceiverCombinedKey<'s, 'r> { /* private fields */ }
Expand description
(Alice's public key
, Bob's private key
) pair.
(Alice is a sender and Bob a receiver.)
Implementations§
Source§impl<'s, 'r> ReceiverCombinedKey<'s, 'r>
impl<'s, 'r> ReceiverCombinedKey<'s, 'r>
Sourcepub fn new(
sender_public_key: &'s SenderPublicKey,
receiver_private_key: &'r ReceiverPrivateKey,
) -> ReceiverCombinedKey<'s, 'r>
pub fn new( sender_public_key: &'s SenderPublicKey, receiver_private_key: &'r ReceiverPrivateKey, ) -> ReceiverCombinedKey<'s, 'r>
Constructor.
Trait Implementations§
Source§impl<'s, 'r> Clone for ReceiverCombinedKey<'s, 'r>
impl<'s, 'r> Clone for ReceiverCombinedKey<'s, 'r>
Source§fn clone(&self) -> ReceiverCombinedKey<'s, 'r>
fn clone(&self) -> ReceiverCombinedKey<'s, 'r>
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<'s, 'r> Freeze for ReceiverCombinedKey<'s, 'r>
impl<'s, 'r> RefUnwindSafe for ReceiverCombinedKey<'s, 'r>
impl<'s, 'r> Send for ReceiverCombinedKey<'s, 'r>
impl<'s, 'r> Sync for ReceiverCombinedKey<'s, 'r>
impl<'s, 'r> Unpin for ReceiverCombinedKey<'s, 'r>
impl<'s, 'r> UnwindSafe for ReceiverCombinedKey<'s, 'r>
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