Enum ethabi::ParamType [] [src]

pub enum ParamType {
    Address,
    Bytes,
    Int(usize),
    Uint(usize),
    Bool,
    String,
    Array(Box<ParamType>),
    FixedBytes(usize),
    FixedArray(Box<ParamType>, usize),
}

Function and event param types.

Variants

Address.

Bytes.

Signed integer.

Unisgned integer.

Boolean.

String.

Array of unknown size.

Vector of bytes with fixed size.

Array with fixed size.

Trait Implementations

impl<'a> Deserialize<'a> for ParamType
[src]

[src]

Deserialize this value from the given Serde deserializer. Read more

impl Debug for ParamType
[src]

[src]

Formats the value using the given formatter.

impl Clone for ParamType
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for ParamType
[src]

[src]

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

[src]

This method tests for !=.

impl Display for ParamType
[src]

[src]

Formats the value using the given formatter. Read more