pub trait InterfaceTrait {
type Input: ABIDecodable;
type Output: ABIEncodable;
const NAME_AND_PARAMS: &'static str;
const FUNC_SIG: [u8; 4];
}
Required Associated Types§
type Input: ABIDecodable
type Output: ABIEncodable
Required Associated Constants§
Object Safety§
This trait is not object safe.