pub enum PsetRunError {
SharedError(PsetError),
PsetDecode(ParseError),
InputIndexParse(ParseIntError),
ProgramParse(ParseError),
NoRedeemNode,
BitMachineConstruction(LimitError),
}Variants§
PsetDecode(ParseError)
InputIndexParse(ParseIntError)
ProgramParse(ParseError)
NoRedeemNode
BitMachineConstruction(LimitError)
Trait Implementations§
Source§impl Debug for PsetRunError
impl Debug for PsetRunError
Source§impl Display for PsetRunError
impl Display for PsetRunError
Source§impl Error for PsetRunError
impl Error for PsetRunError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for PsetRunError
impl !RefUnwindSafe for PsetRunError
impl Send for PsetRunError
impl Sync for PsetRunError
impl Unpin for PsetRunError
impl !UnwindSafe for PsetRunError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more