Struct cdp::indexed_db::ObjectStore
[−]
[src]
pub struct ObjectStore<'a> {
pub name: Cow<'a, str>,
pub key_path: KeyPath<'a>,
pub auto_increment: bool,
pub indexes: Vec<ObjectStoreIndex<'a>>,
}[Experimental] Object store.
Fields
name: Cow<'a, str>
Object store name.
key_path: KeyPath<'a>
Object store key path.
auto_increment: bool
If true, object store has auto increment flag set.
indexes: Vec<ObjectStoreIndex<'a>>
Indexes in this object store.
Trait Implementations
impl<'a> Clone for ObjectStore<'a>[src]
fn clone(&self) -> ObjectStore<'a>[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl<'a> Debug for ObjectStore<'a>[src]
impl<'a> PartialEq for ObjectStore<'a>[src]
fn eq(&self, __arg_0: &ObjectStore<'a>) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &ObjectStore<'a>) -> bool[src]
This method tests for !=.