(key: &str)
| 57 | } |
| 58 | |
| 59 | pub fn load_cookie_bytes(key: &str) -> io::Result<Option<Vec<u8>>> { |
| 60 | load_bytes(StorageScope::Cookie, key) |
| 61 | } |
| 62 | |
| 63 | pub fn save_cookie_bytes(key: &str, data: &[u8]) -> io::Result<()> { |
| 64 | save_bytes(StorageScope::Cookie, key, data) |
nothing calls this directly
no test coverage detected