Struct cdp::indexed_db::DatabaseWithObjectStores
[−]
[src]
pub struct DatabaseWithObjectStores<'a> {
pub name: Cow<'a, str>,
pub version: i32,
pub object_stores: Vec<ObjectStore<'a>>,
}[Experimental] Database with an array of object stores.
Fields
name: Cow<'a, str>
Database name.
version: i32
Database version.
object_stores: Vec<ObjectStore<'a>>
Object stores in this database.
Trait Implementations
impl<'a> Clone for DatabaseWithObjectStores<'a>[src]
fn clone(&self) -> DatabaseWithObjectStores<'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 DatabaseWithObjectStores<'a>[src]
impl<'a> PartialEq for DatabaseWithObjectStores<'a>[src]
fn eq(&self, __arg_0: &DatabaseWithObjectStores<'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: &DatabaseWithObjectStores<'a>) -> bool[src]
This method tests for !=.