pub struct DecodedExtendedSerializedPublicKey {
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 public_key_hex_uncompressed: 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§public_key_hex_uncompressed: StringTrait Implementations§
Source§impl Clone for DecodedExtendedSerializedPublicKey
impl Clone for DecodedExtendedSerializedPublicKey
Source§fn clone(&self) -> DecodedExtendedSerializedPublicKey
fn clone(&self) -> DecodedExtendedSerializedPublicKey
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 DecodedExtendedSerializedPublicKey
impl RefUnwindSafe for DecodedExtendedSerializedPublicKey
impl Send for DecodedExtendedSerializedPublicKey
impl Sync for DecodedExtendedSerializedPublicKey
impl Unpin for DecodedExtendedSerializedPublicKey
impl UnwindSafe for DecodedExtendedSerializedPublicKey
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