pub trait StorageWriteApi: HandleTypeInfo {
    type StorageWriteApiImpl: StorageWriteApiImpl + HandleTypeInfo<ManagedBufferHandle = Self::ManagedBufferHandle, BigIntHandle = Self::BigIntHandle, BigFloatHandle = Self::BigFloatHandle, EllipticCurveHandle = Self::EllipticCurveHandle>;

    // Required method
    fn storage_write_api_impl() -> Self::StorageWriteApiImpl;
}

Required Associated Types§

source

type StorageWriteApiImpl: StorageWriteApiImpl + HandleTypeInfo<ManagedBufferHandle = Self::ManagedBufferHandle, BigIntHandle = Self::BigIntHandle, BigFloatHandle = Self::BigFloatHandle, EllipticCurveHandle = Self::EllipticCurveHandle>

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§