(scope: StorageScope, key: &str)
| 8 | } |
| 9 | |
| 10 | pub fn load_bytes(scope: StorageScope, key: &str) -> io::Result<Option<Vec<u8>>> { |
| 11 | load_bytes_impl(scope, key) |
| 12 | } |
| 13 | |
| 14 | pub fn save_bytes(scope: StorageScope, key: &str, data: &[u8]) -> io::Result<()> { |
| 15 | save_bytes_impl(scope, key, data) |
no test coverage detected