pub enum BlockParseError {
FromUtf8Error(Field),
IntoU64Error(Field),
}Variants§
Trait Implementations§
Source§impl Debug for BlockParseError
impl Debug for BlockParseError
Source§impl Display for BlockParseError
impl Display for BlockParseError
Source§impl Error for BlockParseError
impl Error for BlockParseError
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 From<BlockParseError> for HeaderError
impl From<BlockParseError> for HeaderError
Source§fn from(source: BlockParseError) -> Self
fn from(source: BlockParseError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for BlockParseError
impl RefUnwindSafe for BlockParseError
impl Send for BlockParseError
impl Sync for BlockParseError
impl Unpin for BlockParseError
impl UnwindSafe for BlockParseError
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