pub struct KeyPair<const L: usize> {
pub p: Uint<L>,
pub q: Uint<L>,
pub private_key: Key<L>,
pub public_key: Key<L>,
}Fields§
§p: Uint<L>§q: Uint<L>§private_key: Key<L>§public_key: Key<L>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<const L: usize> RefUnwindSafe for KeyPair<L>
impl<const L: usize> Send for KeyPair<L>
impl<const L: usize> Sync for KeyPair<L>
impl<const L: usize> Unpin for KeyPair<L>
impl<const L: usize> UnwindSafe for KeyPair<L>
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