idb 0.6.5

A futures based crate for interacting with IndexedDB on browsers using webassembly
Documentation
1
2
3
4
5
6
7
8
use crate::Error;

impl_store_request_future!(
    GetAllStoreRequestFuture,
    crate::request::GetAllStoreRequest,
    Vec<wasm_bindgen::JsValue>,
    "Future returned by [`GetAllStoreRequest::into_future`](crate::request::GetAllStoreRequest::into_future)."
);