Struct ckb_verification::InvalidParentError
source · pub struct InvalidParentError {
pub parent_hash: Byte32,
}Expand description
The block’s parent is marked as invalid.
Fields§
§parent_hash: Byte32The parent block hash.
Trait Implementations§
source§impl Clone for InvalidParentError
impl Clone for InvalidParentError
source§fn clone(&self) -> InvalidParentError
fn clone(&self) -> InvalidParentError
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 InvalidParentError
impl Debug for InvalidParentError
source§impl Display for InvalidParentError
impl Display for InvalidParentError
source§impl Error for InvalidParentError
impl Error for InvalidParentError
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 From<InvalidParentError> for Error
impl From<InvalidParentError> for Error
source§fn from(error: InvalidParentError) -> Self
fn from(error: InvalidParentError) -> Self
Converts to this type from the input type.
source§impl From<InvalidParentError> for HeaderError
impl From<InvalidParentError> for HeaderError
source§fn from(error: InvalidParentError) -> Self
fn from(error: InvalidParentError) -> Self
Converts to this type from the input type.
source§impl PartialEq<InvalidParentError> for InvalidParentError
impl PartialEq<InvalidParentError> for InvalidParentError
source§fn eq(&self, other: &InvalidParentError) -> bool
fn eq(&self, other: &InvalidParentError) -> bool
This method tests for
self and other values to be equal, and is used
by ==.