pub enum BlockValidationFailedCode {
BadBlockHash,
BadTransaction,
InvalidBlock,
ChainstateError,
UnknownParent,
NonCanonicalTenure,
NoSuchTenure,
}Variants§
BadBlockHash
BadTransaction
InvalidBlock
ChainstateError
UnknownParent
NonCanonicalTenure
NoSuchTenure
Trait Implementations§
Source§impl Clone for BlockValidationFailedCode
impl Clone for BlockValidationFailedCode
Source§fn clone(&self) -> BlockValidationFailedCode
fn clone(&self) -> BlockValidationFailedCode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BlockValidationFailedCode
impl Debug for BlockValidationFailedCode
Source§impl<'de> Deserialize<'de> for BlockValidationFailedCode
impl<'de> Deserialize<'de> for BlockValidationFailedCode
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for BlockValidationFailedCode
impl PartialEq for BlockValidationFailedCode
Source§fn eq(&self, other: &BlockValidationFailedCode) -> bool
fn eq(&self, other: &BlockValidationFailedCode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BlockValidationFailedCode
Auto Trait Implementations§
impl Freeze for BlockValidationFailedCode
impl RefUnwindSafe for BlockValidationFailedCode
impl Send for BlockValidationFailedCode
impl Sync for BlockValidationFailedCode
impl Unpin for BlockValidationFailedCode
impl UnsafeUnpin for BlockValidationFailedCode
impl UnwindSafe for BlockValidationFailedCode
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