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.

Unsigned integer.

Boolean.

String.

Array of unknown size.

Vector of bytes with fixed size.

Array with fixed size.

Methods

impl ParamType
[src]

returns whether a zero length byte slice (0x) is a valid encoded form of this param type

Trait Implementations

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

Deserialize this value from the given Serde deserializer. Read more

impl Debug for ParamType
[src]

Formats the value using the given formatter. Read more

impl Clone for ParamType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ParamType
[src]

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

This method tests for !=.

impl Display for ParamType
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for ParamType

impl Sync for ParamType