Enum bitcoin::blockdata::script::Error [−][src]
pub enum Error {
NonMinimalPush,
EarlyEndOfScript,
NumericOverflow,
}
Expand description
Ways that a script might fail. Not everything is split up as much as it could be; patches welcome if more detailed errors would help you.
Variants
NonMinimalPush
Something did a non-minimal push; for more information see
https://github.com/bitcoin/bips/blob/master/bip-0062.mediawiki#Push_operators
EarlyEndOfScript
Some opcode expected a parameter, but it was missing or truncated
NumericOverflow
Tried to read an array off the stack as a number when it was more than 4 bytes
Trait Implementations
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
Auto Trait Implementations
impl RefUnwindSafe for Error
impl UnwindSafe for Error
Blanket Implementations
Mutably borrows from an owned value. Read more