Trait ethers_core::abi::token::Tokenizer [−][src]
pub trait Tokenizer { fn tokenize_address(value: &str) -> Result<[u8; 20], Error>; fn tokenize_string(value: &str) -> Result<String, Error>; fn tokenize_bool(value: &str) -> Result<bool, Error>; fn tokenize_bytes(value: &str) -> Result<Vec<u8, Global>, Error>; fn tokenize_fixed_bytes(
value: &str,
len: usize
) -> Result<Vec<u8, Global>, Error>; fn tokenize_uint(value: &str) -> Result<[u8; 32], Error>; fn tokenize_int(value: &str) -> Result<[u8; 32], Error>; fn tokenize(param: &ParamType, value: &str) -> Result<Token, Error> { ... } fn tokenize_fixed_array(
value: &str,
param: &ParamType,
len: usize
) -> Result<Vec<Token, Global>, Error> { ... } fn tokenize_struct(
value: &str,
param: &[ParamType]
) -> Result<Vec<Token, Global>, Error> { ... } fn tokenize_array(
value: &str,
param: &ParamType
) -> Result<Vec<Token, Global>, Error> { ... } }
Expand description
This trait should be used to parse string values as tokens.
Required methods
Tries to parse a value as an address.
Tries to parse a value as bytes.
Tries to parse a value as bytes.
Tries to parse a value as unsigned integer.
Provided methods
Tries to parse a string as a token of given type.
Tries to parse a value as a vector of tokens of fixed size.
Tried to parse a struct as a vector of tokens