Enum bitcoin_bech32::WitnessProgramError [] [src]

pub enum WitnessProgramError {
    InvalidLength,
    InvalidVersionLength,
    InvalidScriptVersion,
}

Error types for witness programs

BIP141 specifies Segregated Witness and defines valid program lengths for Version 0 scripts. Script version is also limited to values 0-16.

Variants

Denotes that the WitnessProgram is too long or too short

Programs must be between 2 and 40 bytes

Given the program version, the length is invalid

Version 0 scripts must be either 20 or 32 bytes

Script version must be 0 to 16 inclusive

Trait Implementations

impl PartialEq for WitnessProgramError
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl Debug for WitnessProgramError
[src]

[src]

Formats the value using the given formatter.

impl Display for WitnessProgramError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for WitnessProgramError
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

The lower-level cause of this error, if any. Read more