pub struct ExtendedPublicKey<K: PublicKey> {
    pub public_key: K,
    pub attrs: ExtendedKeyAttrs,
}
Expand description

Extended public secp256k1 ECDSA verification key. Extended public keys derived using BIP32.

Generic around a PublicKey type.

Fields§

§public_key: K

Derived public key

§attrs: ExtendedKeyAttrs

Extended key attributes.

Implementations§

source§

impl<K> ExtendedPublicKey<K>
where K: PublicKey,

source

pub fn public_key(&self) -> &K

Obtain the non-extended public key value K.

source

pub fn attrs(&self) -> &ExtendedKeyAttrs

Get attributes for this key such as depth, parent fingerprint, child number, and chain code.

source

pub fn fingerprint(&self) -> KeyFingerprint

Compute a 4-byte key fingerprint for this extended public key.

source

pub fn derive_child(&self, child_number: ChildNumber) -> Result<Self>

Derive a child key for a particular ChildNumber.

source

pub fn derive_path(self, path: DerivationPath) -> Result<Self>

source

pub fn to_bytes(&self) -> PublicKeyBytes

Serialize the raw public key as a byte array (e.g. SEC1-encoded).

source

pub fn to_extended_key(&self, prefix: Prefix) -> ExtendedKey

Serialize this key as an ExtendedKey.

source

pub fn to_string(&self, prefix: Option<Prefix>) -> String

source

pub fn from_public_key(public_key: K, attrs: &ExtendedKeyAttrs) -> Self

Trait Implementations§

source§

impl<K> BorshDeserialize for ExtendedPublicKey<K>
where K: PublicKey,

source§

fn deserialize(buf: &mut &[u8]) -> Result<Self>

Deserializes this instance from a given slice of bytes. Updates the buffer to point at the remaining bytes.
source§

fn try_from_slice(v: &[u8]) -> Result<Self, Error>

Deserialize this instance from a slice of bytes.
source§

impl<K> BorshSerialize for ExtendedPublicKey<K>
where K: PublicKey,

source§

fn serialize<W: Write>(&self, writer: &mut W) -> Result<()>

source§

fn try_to_vec(&self) -> Result<Vec<u8>, Error>

Serialize this instance into a vector of bytes.
source§

impl<K: Clone + PublicKey> Clone for ExtendedPublicKey<K>

source§

fn clone(&self) -> ExtendedPublicKey<K>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<K: Debug + PublicKey> Debug for ExtendedPublicKey<K>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de, K> Deserialize<'de> for ExtendedPublicKey<K>
where K: Deserialize<'de> + PublicKey + 'de,

source§

fn deserialize<D>(deserializer: D) -> Result<ExtendedPublicKey<K>, D::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Display for ExtendedPublicKey<PublicKey>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<K> From<&ExtendedPrivateKey<K>> for ExtendedPublicKey<K::PublicKey>
where K: PrivateKey,

source§

fn from(xprv: &ExtendedPrivateKey<K>) -> ExtendedPublicKey<K::PublicKey>

Converts to this type from the input type.
source§

impl From<ExtendedPublicKey<PublicKey>> for XPub

source§

fn from(inner: ExtendedPublicKey<PublicKey>) -> Self

Converts to this type from the input type.
source§

impl<K> FromStr for ExtendedPublicKey<K>
where K: PublicKey,

§

type Err = Error

The associated error which can be returned from parsing.
source§

fn from_str(xpub: &str) -> Result<Self>

Parses a string s to return a value of this type. Read more
source§

impl<K: Ord + PublicKey> Ord for ExtendedPublicKey<K>

source§

fn cmp(&self, other: &ExtendedPublicKey<K>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl<K: PartialEq + PublicKey> PartialEq for ExtendedPublicKey<K>

source§

fn eq(&self, other: &ExtendedPublicKey<K>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<K: PartialOrd + PublicKey> PartialOrd for ExtendedPublicKey<K>

source§

fn partial_cmp(&self, other: &ExtendedPublicKey<K>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl<K> Serialize for ExtendedPublicKey<K>
where K: Serialize + PublicKey,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl<K> TryFrom<ExtendedKey> for ExtendedPublicKey<K>
where K: PublicKey,

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(extended_key: ExtendedKey) -> Result<ExtendedPublicKey<K>>

Performs the conversion.
source§

impl<K: Eq + PublicKey> Eq for ExtendedPublicKey<K>

source§

impl<K: PublicKey> StructuralEq for ExtendedPublicKey<K>

source§

impl<K: PublicKey> StructuralPartialEq for ExtendedPublicKey<K>

Auto Trait Implementations§

§

impl<K> RefUnwindSafe for ExtendedPublicKey<K>
where K: RefUnwindSafe,

§

impl<K> Send for ExtendedPublicKey<K>
where K: Send,

§

impl<K> Sync for ExtendedPublicKey<K>
where K: Sync,

§

impl<K> Unpin for ExtendedPublicKey<K>
where K: Unpin,

§

impl<K> UnwindSafe for ExtendedPublicKey<K>
where K: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> Any for T
where T: Any,

§

fn into_any(self: Box<T>) -> Box<dyn Any>

§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

§

fn type_name(&self) -> &'static str

§

impl<T> AnySync for T
where T: Any + Send + Sync,

§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Sync + Send>

source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,