pub enum TransactionScriptError {
ScriptCompilationError(AssemblyError),
}Variants§
ScriptCompilationError(AssemblyError)
Trait Implementations§
source§impl Clone for TransactionScriptError
impl Clone for TransactionScriptError
source§fn clone(&self) -> TransactionScriptError
fn clone(&self) -> TransactionScriptError
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for TransactionScriptError
impl Debug for TransactionScriptError
source§impl Display for TransactionScriptError
impl Display for TransactionScriptError
source§impl Error for TransactionScriptError
impl Error for TransactionScriptError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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 PartialEq for TransactionScriptError
impl PartialEq for TransactionScriptError
source§fn eq(&self, other: &TransactionScriptError) -> bool
fn eq(&self, other: &TransactionScriptError) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for TransactionScriptError
Auto Trait Implementations§
impl RefUnwindSafe for TransactionScriptError
impl Send for TransactionScriptError
impl Sync for TransactionScriptError
impl Unpin for TransactionScriptError
impl UnwindSafe for TransactionScriptError
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