pub struct DerivedAddress {
pub path: String,
pub private_key_hex: Zeroizing<String>,
pub public_key_hex: String,
pub address: String,
}Expand description
A derived Ethereum address with associated keys.
Fields§
§path: StringDerivation path used.
private_key_hex: Zeroizing<String>Private key in hex format (without 0x prefix).
public_key_hex: StringPublic key in hex format (uncompressed).
address: StringChecksummed Ethereum address.
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