#[non_exhaustive]pub enum NodeParityError {
Environment(&'static str),
InvalidCString(&'static str),
BridgeFailure(&'static str),
Script(ScriptError),
}Expand description
Error returned by the shared Tidecoin node parity harness.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Environment(&'static str)
The configured Tidecoin node checkout is missing or malformed.
InvalidCString(&'static str)
A required C-string conversion failed.
BridgeFailure(&'static str)
A native bridge call returned an unexpected failure mode.
Script(ScriptError)
A Tidecoin-node script verification call returned a script error.
Trait Implementations§
Source§impl Clone for NodeParityError
impl Clone for NodeParityError
Source§fn clone(&self) -> NodeParityError
fn clone(&self) -> NodeParityError
Returns a duplicate 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 NodeParityError
impl Debug for NodeParityError
Source§impl Display for NodeParityError
impl Display for NodeParityError
Source§impl Error for NodeParityError
Available on crate feature std only.
impl Error for NodeParityError
Available on crate feature
std only.1.30.0 · 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 PartialEq for NodeParityError
impl PartialEq for NodeParityError
impl Eq for NodeParityError
impl StructuralPartialEq for NodeParityError
Auto Trait Implementations§
impl Freeze for NodeParityError
impl RefUnwindSafe for NodeParityError
impl Send for NodeParityError
impl Sync for NodeParityError
impl Unpin for NodeParityError
impl UnsafeUnpin for NodeParityError
impl UnwindSafe for NodeParityError
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