pub trait StorageReadApi {
    type StorageReadApiImpl: StorageReadApiImpl;

    // Required method
    fn storage_read_api_impl() -> Self::StorageReadApiImpl;
}

Required Associated Types§

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§