(scope: StorageScope, key: &str, data: &[u8])
| 12 | } |
| 13 | |
| 14 | pub fn save_bytes(scope: StorageScope, key: &str, data: &[u8]) -> io::Result<()> { |
| 15 | save_bytes_impl(scope, key, data) |
| 16 | } |
| 17 | |
| 18 | pub fn remove(scope: StorageScope, key: &str) -> io::Result<()> { |
| 19 | remove_impl(scope, key) |
no test coverage detected