pub struct DecodedExtendedSerializedPrivateKey {
pub version_hex: String,
pub depth: u8,
pub parent_fingerprint: String,
pub child_index: u32,
pub network: Network,
pub depth_fingerprint_child_index_hex: String,
pub chain_code_hex: String,
pub private_key_hex: String,
pub wif_compressed: String,
pub wif_uncompressed: String,
pub public_key_hex_uncompressed: String,
pub public_key_hex_compressed: String,
}Fields§
§version_hex: String§depth: u8§parent_fingerprint: String§child_index: u32§network: Network§depth_fingerprint_child_index_hex: String§chain_code_hex: String§private_key_hex: String§wif_compressed: String§wif_uncompressed: String§public_key_hex_uncompressed: String§public_key_hex_compressed: StringTrait Implementations§
Source§impl Clone for DecodedExtendedSerializedPrivateKey
impl Clone for DecodedExtendedSerializedPrivateKey
Source§fn clone(&self) -> DecodedExtendedSerializedPrivateKey
fn clone(&self) -> DecodedExtendedSerializedPrivateKey
Returns a duplicate of the value. Read more
1.0.0 · 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 DecodedExtendedSerializedPrivateKey
impl RefUnwindSafe for DecodedExtendedSerializedPrivateKey
impl Send for DecodedExtendedSerializedPrivateKey
impl Sync for DecodedExtendedSerializedPrivateKey
impl Unpin for DecodedExtendedSerializedPrivateKey
impl UnwindSafe for DecodedExtendedSerializedPrivateKey
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