(_: StorageScope, _: &str)
| 86 | |
| 87 | #[cfg(not(target_arch = "wasm32"))] |
| 88 | fn remove_impl(_: StorageScope, _: &str) -> io::Result<()> { |
| 89 | Err(io::Error::new( |
| 90 | io::ErrorKind::Unsupported, |
| 91 | "web storage requires wasm32 target", |
| 92 | )) |
| 93 | } |
| 94 | |
| 95 | #[cfg(target_arch = "wasm32")] |
| 96 | fn encode_value(data: &[u8]) -> String { |
no test coverage detected