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