[][src]Struct btc_transaction_utils::InputSignature

pub struct InputSignature(_);

A signature data with the embedded sighash type byte.

Methods

impl InputSignature[src]

pub fn new(inner: Vec<u8>, sighash_type: SigHashType) -> InputSignature[src]

Constructs input signature from the given signature data and the given sighash type.

pub fn from_bytes(bytes: Vec<u8>) -> Result<InputSignature, Error>[src]

Tries to construct input signature from the raw bytes.

pub fn content(&self) -> &[u8][src]

Returns the signature content in canonical form.

pub fn sighash_type(&self) -> SigHashType[src]

Returns a sighash type of the given input signature.

Trait Implementations

impl AsRef<[u8]> for InputSignature[src]

impl PartialEq<InputSignature> for InputSignature[src]

impl From<InputSignature> for Vec<u8>[src]

impl<'a> From<&'a InputSignature> for InputSignatureRef<'a>[src]

impl<'a> From<InputSignatureRef<'a>> for InputSignature[src]

impl Clone for InputSignature[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for InputSignature[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> ToBase32 for T where
    T: AsRef<[u8]>, 

fn to_base32(&self) -> Vec<u5>

Convert base256 to base32, adds padding if necessary

impl<'f, T> CheckBase32 for T where
    T: AsRef<[u8]>, 

type Err = Error

Error type if conversion fails

impl<T> ToHex for T where
    T: AsRef<[u8]>, 
[src]