Enum bitcoin::blockdata::transaction::ParseOutPointError [−][src]
pub enum ParseOutPointError {
Txid(Error),
Vout(ParseIntError),
Format,
TooLong,
VoutNotCanonical,
}
Expand description
An error in parsing an OutPoint.
Variants
Txid(Error)
Tuple Fields
0: Error
Error in TXID part.
Vout(ParseIntError)
Tuple Fields
Error in vout part.
Format
Error in general format.
TooLong
Size exceeds max.
VoutNotCanonical
Vout part is not strictly numeric without leading zeroes.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ParseOutPointError
impl Send for ParseOutPointError
impl Sync for ParseOutPointError
impl Unpin for ParseOutPointError
impl UnwindSafe for ParseOutPointError
Blanket Implementations
Mutably borrows from an owned value. Read more