blob: bd5a50e69f898053ca1c690d32d43cf7b485ba4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#![allow(unused_imports)]
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
#[doc = "The `IdbRequestReadyState` enum."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `IdbRequestReadyState`*"]
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum IdbRequestReadyState {
Pending = "pending",
Done = "done",
}
|