pub trait IDBIndexMethods<D>where
D: DomTypes,{
// Required methods
fn ObjectStore(&self) -> Root<Dom<<D as DomTypes>::IDBObjectStore>>;
fn KeyPath(
&self,
cx: JSContext,
_can_gc: CanGc,
retval: MutableHandle<'_, Value>,
);
fn MultiEntry(&self) -> bool;
fn Unique(&self) -> bool;
}