Trait FromStringError

pub trait FromStringError {
    // Required method
    fn from_string(value: String) -> Self;
}
Expand description

Trait for converting a string to an EVMError::Custom error.

Required Methods§

fn from_string(value: String) -> Self

Converts a string to an EVMError::Custom error.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

§

impl<DB, TX> FromStringError for EVMError<DB, TX>

§

impl<DbError> FromStringError for ContextError<DbError>