1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
use wasm_bindgen::{JsCast, JsValue};
use web_sys::IdbObjectStoreParameters;
use crate::{Error, KeyPath};
#[derive(Debug, Default, Clone, PartialEq, Eq)]
pub struct ObjectStoreParams {
inner: IdbObjectStoreParameters,
}
impl ObjectStoreParams {
pub fn new() -> Self {
Default::default()
}
pub fn auto_increment(&mut self, auto_increment: bool) -> &mut Self {
self.inner.auto_increment(auto_increment);
self
}
pub fn key_path(&mut self, key_path: Option<KeyPath>) -> &mut Self {
self.inner.key_path(key_path.map(Into::into).as_ref());
self
}
}
impl From<IdbObjectStoreParameters> for ObjectStoreParams {
fn from(inner: IdbObjectStoreParameters) -> Self {
Self { inner }
}
}
impl From<ObjectStoreParams> for IdbObjectStoreParameters {
fn from(params: ObjectStoreParams) -> Self {
params.inner
}
}
impl TryFrom<JsValue> for ObjectStoreParams {
type Error = Error;
fn try_from(value: JsValue) -> Result<Self, Self::Error> {
value
.dyn_into::<IdbObjectStoreParameters>()
.map(Into::into)
.map_err(|value| Error::UnexpectedJsType("IdbObjectStoreParameters", value))
}
}
impl From<ObjectStoreParams> for JsValue {
fn from(value: ObjectStoreParams) -> Self {
value.inner.into()
}
}