pub struct ExtendedPublicKey {
pub public_key: [u8; 33],
pub chain_code: [u8; 32],
pub depth: u8,
pub parent_fingerprint: [u8; 4],
pub child_number: u32,
}Fields§
§public_key: [u8; 33]§chain_code: [u8; 32]§depth: u8§parent_fingerprint: [u8; 4]§child_number: u32Implementations§
Trait Implementations§
Source§impl Clone for ExtendedPublicKey
impl Clone for ExtendedPublicKey
Source§fn clone(&self) -> ExtendedPublicKey
fn clone(&self) -> ExtendedPublicKey
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 ExtendedPublicKey
impl RefUnwindSafe for ExtendedPublicKey
impl Send for ExtendedPublicKey
impl Sync for ExtendedPublicKey
impl Unpin for ExtendedPublicKey
impl UnsafeUnpin for ExtendedPublicKey
impl UnwindSafe for ExtendedPublicKey
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