pub struct SpendKeypair {
pub secret: Scalar,
pub public: AffinePoint,
}Expand description
The spending key (secret) used to spend from stealth addresses.
Fields§
§secret: Scalar§public: AffinePointTrait Implementations§
Source§impl Clone for SpendKeypair
impl Clone for SpendKeypair
Source§fn clone(&self) -> SpendKeypair
fn clone(&self) -> SpendKeypair
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 SpendKeypair
impl RefUnwindSafe for SpendKeypair
impl Send for SpendKeypair
impl Sync for SpendKeypair
impl Unpin for SpendKeypair
impl UnsafeUnpin for SpendKeypair
impl UnwindSafe for SpendKeypair
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