(_: StorageScope, _: &str, _: &[u8])
| 78 | |
| 79 | #[cfg(not(target_arch = "wasm32"))] |
| 80 | fn save_bytes_impl(_: StorageScope, _: &str, _: &[u8]) -> io::Result<()> { |
| 81 | Err(io::Error::new( |
| 82 | io::ErrorKind::Unsupported, |
| 83 | "web storage requires wasm32 target", |
| 84 | )) |
| 85 | } |
| 86 | |
| 87 | #[cfg(not(target_arch = "wasm32"))] |
| 88 | fn remove_impl(_: StorageScope, _: &str) -> io::Result<()> { |
no test coverage detected