pub struct AdaptorPreSig {
pub r_prime: AffinePoint,
pub s_prime: Scalar,
}Expand description
An adaptor pre-signature.
Fields§
§r_prime: AffinePointThe modified nonce point R’ = (k + y) * G.
s_prime: ScalarThe pre-signature s’ value.
Trait Implementations§
Source§impl Clone for AdaptorPreSig
impl Clone for AdaptorPreSig
Source§fn clone(&self) -> AdaptorPreSig
fn clone(&self) -> AdaptorPreSig
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 AdaptorPreSig
impl RefUnwindSafe for AdaptorPreSig
impl Send for AdaptorPreSig
impl Sync for AdaptorPreSig
impl Unpin for AdaptorPreSig
impl UnsafeUnpin for AdaptorPreSig
impl UnwindSafe for AdaptorPreSig
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