Enum bitcoin::blockdata::transaction::SigHashType[][src]

pub enum SigHashType {
    All,
    None,
    Single,
    AllPlusAnyoneCanPay,
    NonePlusAnyoneCanPay,
    SinglePlusAnyoneCanPay,
}

Hashtype of a transaction, encoded in the last byte of a signature Fixed values so they can be casted as integer types for encoding

Variants

0x1: Sign all outputs

0x2: Sign no outputs --- anyone can choose the destination

0x3: Sign the output whose index matches this input's index. If none exists, sign the hash 0000000000000000000000000000000000000000000000000000000000000001. (This rule is probably an unintentional C++ism, but it's consensus so we have to follow it.)

0x81: Sign all outputs but only this input

0x82: Sign no outputs and only this input

0x83: Sign one output and only this input (see Single for what "one output" means)

Methods

impl SigHashType
[src]

Reads a 4-byte uint32 as a sighash type

Converts to a u32

Trait Implementations

impl PartialEq for SigHashType
[src]

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

This method tests for !=.

impl Eq for SigHashType
[src]

impl Debug for SigHashType
[src]

Formats the value using the given formatter. Read more

impl Copy for SigHashType
[src]

impl Clone for SigHashType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for SigHashType

impl Sync for SigHashType