pub trait InterfaceTrait {
    type Input: ABIDecodable;
    type Output: ABIEncodable;

    const NAME_AND_PARAMS: &'static str;
    const FUNC_SIG: [u8; 4];
}

Required Associated Types§

Required Associated Constants§

source

const NAME_AND_PARAMS: &'static str

source

const FUNC_SIG: [u8; 4]

Object Safety§

This trait is not object safe.

Implementors§