Struct ethabi::Function [] [src]

pub struct Function {
    pub name: String,
    pub inputs: Vec<Param>,
    pub outputs: Vec<Param>,
    pub constant: bool,
}

Contract function specification.

Fields

Function name.

Function input.

Function output.

Constant function.

Methods

impl Function
[src]

[src]

Prepares ABI function call with given input params.

[src]

Parses the ABI function output to list of tokens.

Trait Implementations

impl Debug for Function
[src]

[src]

Formats the value using the given formatter.

impl Clone for Function
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for Function
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.