[][src]Trait web3::contract::tokens::Detokenize

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

Output type possible to deserialize from Contract ABI

Required methods

fn from_tokens(tokens: Vec<Token>) -> Result<Self, Error> where
    Self: Sized

Creates a new instance from parsed ABI tokens.

Loading content...

Implementations on Foreign Types

impl<A> Detokenize for (A,) where
    A: Tokenizable
[src]

impl<A, B> Detokenize for (A, B) where
    A: Tokenizable,
    B: Tokenizable
[src]

impl<A, B, C> Detokenize for (A, B, C) where
    A: Tokenizable,
    B: Tokenizable,
    C: Tokenizable
[src]

impl<A, B, C, D> Detokenize for (A, B, C, D) where
    A: Tokenizable,
    B: Tokenizable,
    C: Tokenizable,
    D: Tokenizable
[src]

impl<A, B, C, D, E> Detokenize for (A, B, C, D, E) where
    A: Tokenizable,
    B: Tokenizable,
    C: Tokenizable,
    D: Tokenizable,
    E: Tokenizable
[src]

impl<A, B, C, D, E, F> Detokenize for (A, B, C, D, E, F) where
    A: Tokenizable,
    B: Tokenizable,
    C: Tokenizable,
    D: Tokenizable,
    E: Tokenizable,
    F: Tokenizable
[src]

impl<A, B, C, D, E, F, G> Detokenize for (A, B, C, D, E, F, G) where
    A: Tokenizable,
    B: Tokenizable,
    C: Tokenizable,
    D: Tokenizable,
    E: Tokenizable,
    F: Tokenizable,
    G: Tokenizable
[src]

impl<A, B, C, D, E, F, G, H> Detokenize for (A, B, C, D, E, F, G, H) where
    A: Tokenizable,
    B: Tokenizable,
    C: Tokenizable,
    D: Tokenizable,
    E: Tokenizable,
    F: Tokenizable,
    G: Tokenizable,
    H: Tokenizable
[src]

impl<A, B, C, D, E, F, G, H, I> Detokenize for (A, B, C, D, E, F, G, H, I) where
    A: Tokenizable,
    B: Tokenizable,
    C: Tokenizable,
    D: Tokenizable,
    E: Tokenizable,
    F: Tokenizable,
    G: Tokenizable,
    H: Tokenizable,
    I: Tokenizable
[src]

impl<A, B, C, D, E, F, G, H, I, J> Detokenize for (A, B, C, D, E, F, G, H, I, J) where
    A: Tokenizable,
    B: Tokenizable,
    C: Tokenizable,
    D: Tokenizable,
    E: Tokenizable,
    F: Tokenizable,
    G: Tokenizable,
    H: Tokenizable,
    I: Tokenizable,
    J: Tokenizable
[src]

impl<A, B, C, D, E, F, G, H, I, J, K> Detokenize for (A, B, C, D, E, F, G, H, I, J, K) where
    A: Tokenizable,
    B: Tokenizable,
    C: Tokenizable,
    D: Tokenizable,
    E: Tokenizable,
    F: Tokenizable,
    G: Tokenizable,
    H: Tokenizable,
    I: Tokenizable,
    J: Tokenizable,
    K: Tokenizable
[src]

impl<A, B, C, D, E, F, G, H, I, J, K, L> Detokenize for (A, B, C, D, E, F, G, H, I, J, K, L) where
    A: Tokenizable,
    B: Tokenizable,
    C: Tokenizable,
    D: Tokenizable,
    E: Tokenizable,
    F: Tokenizable,
    G: Tokenizable,
    H: Tokenizable,
    I: Tokenizable,
    J: Tokenizable,
    K: Tokenizable,
    L: Tokenizable
[src]

impl<A, B, C, D, E, F, G, H, I, J, K, L, M> Detokenize for (A, B, C, D, E, F, G, H, I, J, K, L, M) where
    A: Tokenizable,
    B: Tokenizable,
    C: Tokenizable,
    D: Tokenizable,
    E: Tokenizable,
    F: Tokenizable,
    G: Tokenizable,
    H: Tokenizable,
    I: Tokenizable,
    J: Tokenizable,
    K: Tokenizable,
    L: Tokenizable,
    M: Tokenizable
[src]

impl<A, B, C, D, E, F, G, H, I, J, K, L, M, N> Detokenize for (A, B, C, D, E, F, G, H, I, J, K, L, M, N) where
    A: Tokenizable,
    B: Tokenizable,
    C: Tokenizable,
    D: Tokenizable,
    E: Tokenizable,
    F: Tokenizable,
    G: Tokenizable,
    H: Tokenizable,
    I: Tokenizable,
    J: Tokenizable,
    K: Tokenizable,
    L: Tokenizable,
    M: Tokenizable,
    N: Tokenizable
[src]

impl<A, B, C, D, E, F, G, H, I, J, K, L, M, N, O> Detokenize for (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O) where
    A: Tokenizable,
    B: Tokenizable,
    C: Tokenizable,
    D: Tokenizable,
    E: Tokenizable,
    F: Tokenizable,
    G: Tokenizable,
    H: Tokenizable,
    I: Tokenizable,
    J: Tokenizable,
    K: Tokenizable,
    L: Tokenizable,
    M: Tokenizable,
    N: Tokenizable,
    O: Tokenizable
[src]

impl<A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P> Detokenize for (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P) where
    A: Tokenizable,
    B: Tokenizable,
    C: Tokenizable,
    D: Tokenizable,
    E: Tokenizable,
    F: Tokenizable,
    G: Tokenizable,
    H: Tokenizable,
    I: Tokenizable,
    J: Tokenizable,
    K: Tokenizable,
    L: Tokenizable,
    M: Tokenizable,
    N: Tokenizable,
    O: Tokenizable,
    P: Tokenizable
[src]

Loading content...

Implementors

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

Loading content...