(key: &str)
| 45 | } |
| 46 | |
| 47 | pub fn load_session_bytes(key: &str) -> io::Result<Option<Vec<u8>>> { |
| 48 | load_bytes(StorageScope::Session, key) |
| 49 | } |
| 50 | |
| 51 | pub fn save_session_bytes(key: &str, data: &[u8]) -> io::Result<()> { |
| 52 | save_bytes(StorageScope::Session, key, data) |
nothing calls this directly
no test coverage detected