pub trait ParamTypeExt {
    // Provided method
    fn from_str(s: &str) -> Result<ParamType, ParseParamTypeError> { ... }
}
Expand description

An extension trait for Solidity parameter types.

Provided Methods§

source

fn from_str(s: &str) -> Result<ParamType, ParseParamTypeError>

Parses a parameter type from a string value.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl ParamTypeExt for ParamType

Implementors§