pub trait SendApi: ManagedTypeApi + BlockchainApi {
type SendApiImpl: SendApiImpl + HandleTypeInfo<ManagedBufferHandle = Self::ManagedBufferHandle, BigIntHandle = Self::BigIntHandle, BigFloatHandle = Self::BigFloatHandle, EllipticCurveHandle = Self::EllipticCurveHandle>;
// Required method
fn send_api_impl() -> Self::SendApiImpl;
}
Required Associated Types§
type SendApiImpl: SendApiImpl + HandleTypeInfo<ManagedBufferHandle = Self::ManagedBufferHandle, BigIntHandle = Self::BigIntHandle, BigFloatHandle = Self::BigFloatHandle, EllipticCurveHandle = Self::EllipticCurveHandle>
Required Methods§
fn send_api_impl() -> Self::SendApiImpl
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.