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

Object store name.

Object store key path.

If true, object store has auto increment flag set.

Indexes in this object store.

Trait Implementations

impl<'a> Clone for ObjectStore<'a>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a> Debug for ObjectStore<'a>
[src]

[src]

Formats the value using the given formatter.

impl<'a> PartialEq for ObjectStore<'a>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.