Struct btc_transaction_utils::InputSignature[][src]

pub struct InputSignature(_);

A signature data with the embedded sighash type byte.

Methods

impl InputSignature
[src]

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

Tries to construct input signature from the raw bytes.

Returns the signature content in canonical form.

Returns a sighash type of the given input signature.

Trait Implementations

impl Debug for InputSignature
[src]

Formats the value using the given formatter. Read more

impl Clone for InputSignature
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for InputSignature
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

Auto Trait Implementations