(scope: StorageScope, key: &str)
| 16 | } |
| 17 | |
| 18 | pub fn remove(scope: StorageScope, key: &str) -> io::Result<()> { |
| 19 | remove_impl(scope, key) |
| 20 | } |
| 21 | |
| 22 | pub fn load_string(scope: StorageScope, key: &str) -> io::Result<Option<String>> { |
| 23 | let Some(bytes) = load_bytes(scope, key)? else { |
no test coverage detected