pub struct BitcoinEncoder<P: NetworkParams>(_);
Expand description

Parameterizable Bitcoin encoder

Trait Implementations§

source§

impl<P: Clone + NetworkParams> Clone for BitcoinEncoder<P>

source§

fn clone(&self) -> BitcoinEncoder<P>

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<P: Debug + NetworkParams> Debug for BitcoinEncoder<P>

source§

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

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

impl<P: NetworkParams> XKeyEncoder for BitcoinEncoder<P>

source§

fn write_xpub<W, K>(writer: &mut W, key: &K) -> Result<usize, Bip32Error>where W: Write, K: AsRef<XPub>,

Serialize the xpub to std::io::Write

source§

fn write_xpriv<W, K>(writer: &mut W, key: &K) -> Result<usize, Bip32Error>where W: Write, K: AsRef<XPriv>,

Serialize the xpriv to std::io::Write

source§

fn read_xpriv<R>(reader: &mut R) -> Result<XPriv, Bip32Error>where R: Read,

Attempt to instantiate an XPriv from a std::io::Read Read more
source§

fn read_xpub<R>(reader: &mut R) -> Result<XPub, Bip32Error>where R: Read,

Attempt to instantiate an XPub from a std::io::Read Read more
source§

fn xpriv_to_base58<K>(k: &K) -> Result<String, Bip32Error>where K: AsRef<XPriv>,

Serialize an XPriv to base58
source§

fn xpub_to_base58<K>(k: &K) -> Result<String, Bip32Error>where K: AsRef<XPub>,

Serialize an XPub to base58
source§

fn xpriv_from_base58(s: &str) -> Result<XPriv, Bip32Error>

Attempt to read an XPriv from a b58check string. Read more
source§

fn xpub_from_base58(s: &str) -> Result<XPub, Bip32Error>

Attempt to read an XPub from a b58check string Read more

Auto Trait Implementations§

§

impl<P> RefUnwindSafe for BitcoinEncoder<P>

§

impl<P> Send for BitcoinEncoder<P>

§

impl<P> Sync for BitcoinEncoder<P>

§

impl<P> Unpin for BitcoinEncoder<P>

§

impl<P> UnwindSafe for BitcoinEncoder<P>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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.

source§

impl<T, U> Into<U> for Twhere 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<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere 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, U> TryFrom<U> for Twhere 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 Twhere 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.