|
| virtual | ~ReadableStorage ()=default |
| |
| virtual outcome::result< V > | load (const Key &key) const =0 |
| | Load value by key. More...
|
| |
| virtual outcome::result< std::optional< V > > | tryLoad (const Key &key) const =0 |
| | Load value by key. More...
|
| |
| virtual | ~ReadableBase ()=default |
| |
| virtual outcome::result< bool > | contains (const Key &key) const =0 |
| | Checks if given key-value binding exists in the storage. More...
|
| |
| virtual bool | empty () const =0 |
| | Returns true if the storage is empty. More...
|
| |
template<typename K, typename V>
struct kagome::storage::face::ReadableStorage< K, V >
Definition at line 65 of file readable.hpp.