pub struct DerivedAddress {
pub path: DerivationPath,
pub private_key_wif: Zeroizing<String>,
pub public_key_hex: String,
pub address: String,
pub address_type: AddressType,
}Expand description
A derived Bitcoin address with associated keys.
Fields§
§path: DerivationPathDerivation path used.
private_key_wif: Zeroizing<String>Private key in WIF format.
public_key_hex: StringPublic key in hex format.
address: StringBitcoin address.
address_type: AddressTypeAddress type.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DerivedAddress
impl RefUnwindSafe for DerivedAddress
impl Send for DerivedAddress
impl Sync for DerivedAddress
impl Unpin for DerivedAddress
impl UnwindSafe for DerivedAddress
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