pub struct StealthAddressKeys {
pub viewing_secret: [u8; 32],
pub spending_secret: [u8; 32],
pub ephemeral_secret: [u8; 32],
}Expand description
Per-address stealth keys derived at a specific index.
Fields§
§viewing_secret: [u8; 32]Viewing secret key for this address.
spending_secret: [u8; 32]Spending secret key for this address.
ephemeral_secret: [u8; 32]Ephemeral secret key for this address.
Trait Implementations§
Source§impl Clone for StealthAddressKeys
impl Clone for StealthAddressKeys
Source§fn clone(&self) -> StealthAddressKeys
fn clone(&self) -> StealthAddressKeys
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 StealthAddressKeys
impl RefUnwindSafe for StealthAddressKeys
impl Send for StealthAddressKeys
impl Sync for StealthAddressKeys
impl Unpin for StealthAddressKeys
impl UnsafeUnpin for StealthAddressKeys
impl UnwindSafe for StealthAddressKeys
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more