alloy_contract

Trait CallDecoder

Source
pub trait CallDecoder: Sealed { }
Expand description

A trait for decoding the output of a contract function.

This trait is sealed and cannot be implemented manually. It is an implementation detail of CallBuilder.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl CallDecoder for ()

Source§

impl CallDecoder for Function

Source§

impl<C: SolCall> CallDecoder for PhantomData<C>

Implementors§