idb/store
Types
Type to represent the type of key used on an IndexedDB object store.
pub type ObjectStoreKey {
OutOfLineKey
AutoIncrementedOutOfLineKey
InLineKey(String)
AutoIncrementedInLineKey(String)
CompoundInLineKey(List(String))
}
Constructors
-
OutOfLineKeyOut-of-line key.
If an object store is created using this type of key, then a key must be provided for all insert operation.
-
AutoIncrementedOutOfLineKeyAuto incremented out-of-line key.
-
InLineKey(String) -
AutoIncrementedInLineKey(String) -
CompoundInLineKey(List(String))