[][src]Trait ethers_core::abi::Detokenize

pub trait Detokenize {
    pub fn from_tokens(tokens: Vec<Token>) -> Result<Self, InvalidOutputType>
    where
        Self: Sized
; }

Output type possible to deserialize from Contract ABI

Required methods

pub fn from_tokens(tokens: Vec<Token>) -> Result<Self, InvalidOutputType> where
    Self: Sized
[src]

Creates a new instance from parsed ABI tokens.

Loading content...

Implementations on Foreign Types

impl Detokenize for ()[src]

Loading content...

Implementors

impl<T: Tokenizable> Detokenize for T[src]

Loading content...