Enum blockchain::EpochInfoError
source · pub enum EpochInfoError {
InvalidBlock0(Block0Error),
HeaderVerification {
source: Error,
},
}
Variants§
Trait Implementations§
source§impl Debug for EpochInfoError
impl Debug for EpochInfoError
source§impl Display for EpochInfoError
impl Display for EpochInfoError
source§impl Error for EpochInfoError
impl Error for EpochInfoError
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<Block0Error> for EpochInfoError
impl From<Block0Error> for EpochInfoError
source§fn from(source: Block0Error) -> Self
fn from(source: Block0Error) -> Self
Converts to this type from the input type.
source§impl From<EpochInfoError> for Error
impl From<EpochInfoError> for Error
source§fn from(source: EpochInfoError) -> Self
fn from(source: EpochInfoError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for EpochInfoError
impl Send for EpochInfoError
impl Sync for EpochInfoError
impl Unpin for EpochInfoError
impl !UnwindSafe for EpochInfoError
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