pub enum InterpreterCheckError {
DetermineLockTime(DetermineLockTimeError),
InterpreterCheckInput(InterpreterCheckInputError),
}Expand description
Error type for Pbst Input
Variants§
DetermineLockTime(DetermineLockTimeError)
Failed to determine lock time for unsigned transaction.
InterpreterCheckInput(InterpreterCheckInputError)
Interpreter check failed for an input.
Trait Implementations§
Source§impl Debug for InterpreterCheckError
impl Debug for InterpreterCheckError
Source§impl Display for InterpreterCheckError
impl Display for InterpreterCheckError
Source§impl Error for InterpreterCheckError
Available on crate feature std only.
impl Error for InterpreterCheckError
Available on crate feature
std only.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()
Source§impl From<DetermineLockTimeError> for InterpreterCheckError
impl From<DetermineLockTimeError> for InterpreterCheckError
Source§fn from(e: DetermineLockTimeError) -> Self
fn from(e: DetermineLockTimeError) -> Self
Converts to this type from the input type.
Source§impl From<InterpreterCheckError> for FinalizeError
impl From<InterpreterCheckError> for FinalizeError
Source§fn from(e: InterpreterCheckError) -> Self
fn from(e: InterpreterCheckError) -> Self
Converts to this type from the input type.
Source§impl From<InterpreterCheckInputError> for InterpreterCheckError
impl From<InterpreterCheckInputError> for InterpreterCheckError
Source§fn from(e: InterpreterCheckInputError) -> Self
fn from(e: InterpreterCheckInputError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for InterpreterCheckError
impl RefUnwindSafe for InterpreterCheckError
impl Send for InterpreterCheckError
impl Sync for InterpreterCheckError
impl Unpin for InterpreterCheckError
impl UnsafeUnpin for InterpreterCheckError
impl UnwindSafe for InterpreterCheckError
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