pub trait ToParseErrorMessage {
// Required method
fn to_parse_error_message(self) -> String;
}Available on crate features
rest-client or rpc-client only.Expand description
Trait for converting parse errors into a String message.
Required Methods§
Sourcefn to_parse_error_message(self) -> String
fn to_parse_error_message(self) -> String
Converts a parse error into a human-readable message.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".