pub struct PaillierKeypair {
pub public: PaillierPublicKey,
pub private: PaillierPrivateKey,
}Fields§
§public: PaillierPublicKey§private: PaillierPrivateKeyTrait Implementations§
Source§impl Clone for PaillierKeypair
impl Clone for PaillierKeypair
Source§fn clone(&self) -> PaillierKeypair
fn clone(&self) -> PaillierKeypair
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 PaillierKeypair
impl RefUnwindSafe for PaillierKeypair
impl Send for PaillierKeypair
impl Sync for PaillierKeypair
impl Unpin for PaillierKeypair
impl UnsafeUnpin for PaillierKeypair
impl UnwindSafe for PaillierKeypair
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