IDBIndexMethods

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;
}

Required Methods§

Source

fn ObjectStore(&self) -> DomRoot<D::IDBObjectStore>

Source

fn KeyPath( &self, cx: SafeJSContext, _can_gc: CanGc, retval: MutableHandleValue<'_>, )

Source

fn MultiEntry(&self) -> bool

Source

fn Unique(&self) -> bool

Implementors§