pub trait IDBIndexMethods<D: DomTypes> {
// Required methods
fn ObjectStore(&self) -> DomRoot<D::IDBObjectStore>;
fn KeyPath(
&self,
cx: SafeJSContext,
_can_gc: CanGc,
retval: MutableHandleValue<'_>,
);
fn MultiEntry(&self) -> bool;
fn Unique(&self) -> bool;
}