(_: StorageScope, _: &str)
| 70 | |
| 71 | #[cfg(not(target_arch = "wasm32"))] |
| 72 | fn load_bytes_impl(_: StorageScope, _: &str) -> io::Result<Option<Vec<u8>>> { |
| 73 | Err(io::Error::new( |
| 74 | io::ErrorKind::Unsupported, |
| 75 | "web storage requires wasm32 target", |
| 76 | )) |
| 77 | } |
| 78 | |
| 79 | #[cfg(not(target_arch = "wasm32"))] |
| 80 | fn save_bytes_impl(_: StorageScope, _: &str, _: &[u8]) -> io::Result<()> { |
no test coverage detected