pub struct StealthAddress {
pub ephemeral: AffinePoint,
pub one_time_pubkey: AffinePoint,
}Expand description
A stealth address output.
Fields§
§ephemeral: AffinePointThe ephemeral point published by the sender.
one_time_pubkey: AffinePointThe one-time public key for this address.
Trait Implementations§
Source§impl Clone for StealthAddress
impl Clone for StealthAddress
Source§fn clone(&self) -> StealthAddress
fn clone(&self) -> StealthAddress
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 StealthAddress
impl RefUnwindSafe for StealthAddress
impl Send for StealthAddress
impl Sync for StealthAddress
impl Unpin for StealthAddress
impl UnsafeUnpin for StealthAddress
impl UnwindSafe for StealthAddress
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