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