(key: &str, data: &[u8])
| 61 | } |
| 62 | |
| 63 | pub fn save_cookie_bytes(key: &str, data: &[u8]) -> io::Result<()> { |
| 64 | save_bytes(StorageScope::Cookie, key, data) |
| 65 | } |
| 66 | |
| 67 | pub fn remove_cookie(key: &str) -> io::Result<()> { |
| 68 | remove(StorageScope::Cookie, key) |
nothing calls this directly
no test coverage detected