Struct tapyrus::util::key::PrivateKey [−][src]
A Bitcoin ECDSA private key
Fields
compressed: boolWhether this private key should be serialized as compressed
network: NetworkThe network on which this key should be used
key: SecretKeyThe actual ECDSA key
Implementations
impl PrivateKey[src]
pub fn public_key<C: Signing>(&self, secp: &Secp256k1<C>) -> PublicKey[src]
Creates a public key from this private key
pub fn to_bytes(&self) -> Vec<u8>[src]
Serialize the private key to bytes
pub fn fmt_wif(&self, fmt: &mut dyn Write) -> Result[src]
Format the private key to WIF format.
pub fn to_wif(&self) -> String[src]
Get WIF encoding of this private key.
pub fn from_wif(wif: &str) -> Result<PrivateKey, Error>[src]
Parse WIF encoded private key.
Trait Implementations
impl Clone for PrivateKey[src]
fn clone(&self) -> PrivateKey[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for PrivateKey[src]
impl Debug for PrivateKey[src]
impl Display for PrivateKey[src]
impl Eq for PrivateKey[src]
impl FromStr for PrivateKey[src]
type Err = Error
The associated error which can be returned from parsing.
fn from_str(s: &str) -> Result<PrivateKey, Error>[src]
impl Index<RangeFull> for PrivateKey[src]
impl PartialEq<PrivateKey> for PrivateKey[src]
fn eq(&self, other: &PrivateKey) -> bool[src]
fn ne(&self, other: &PrivateKey) -> bool[src]
impl StructuralEq for PrivateKey[src]
impl StructuralPartialEq for PrivateKey[src]
Auto Trait Implementations
impl RefUnwindSafe for PrivateKey[src]
impl Send for PrivateKey[src]
impl Sync for PrivateKey[src]
impl Unpin for PrivateKey[src]
impl UnwindSafe for PrivateKey[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Az for T[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> CheckedAs for T[src]
pub fn checked_as<Dst>(self) -> Option<Dst> where
T: CheckedCast<Dst>, [src]
T: CheckedCast<Dst>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> OverflowingAs for T[src]
pub fn overflowing_as<Dst>(self) -> (Dst, bool) where
T: OverflowingCast<Dst>, [src]
T: OverflowingCast<Dst>,
impl<T> SaturatingAs for T[src]
pub fn saturating_as<Dst>(self) -> Dst where
T: SaturatingCast<Dst>, [src]
T: SaturatingCast<Dst>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> UnwrappedAs for T[src]
pub fn unwrapped_as<Dst>(self) -> Dst where
T: UnwrappedCast<Dst>, [src]
T: UnwrappedCast<Dst>,
impl<T> WrappingAs for T[src]
pub fn wrapping_as<Dst>(self) -> Dst where
T: WrappingCast<Dst>, [src]
T: WrappingCast<Dst>,