Trait FromStringError

Source
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§

Source

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§

Source§

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