pub trait SendApi: ManagedTypeApi + BlockchainApi {
    type SendApiImpl: SendApiImpl;

    // Required method
    fn send_api_impl() -> Self::SendApiImpl;
}

Required Associated Types§

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§