(key: &str, data: &[u8])
| 49 | } |
| 50 | |
| 51 | pub fn save_session_bytes(key: &str, data: &[u8]) -> io::Result<()> { |
| 52 | save_bytes(StorageScope::Session, key, data) |
| 53 | } |
| 54 | |
| 55 | pub fn remove_session(key: &str) -> io::Result<()> { |
| 56 | remove(StorageScope::Session, key) |
nothing calls this directly
no test coverage detected