Struct chrome_remote_interface_model::indexed_db::RequestDatabaseReturn[][src]

pub struct RequestDatabaseReturn { /* fields omitted */ }

Requests database with given name in given frame.

Implementations

impl RequestDatabaseReturn[src]

pub fn new(database_with_object_stores: DatabaseWithObjectStores) -> Self[src]

pub fn database_with_object_stores(&self) -> &DatabaseWithObjectStores[src]

Database with an array of object stores.

Methods from Deref<Target = DatabaseWithObjectStores>

pub fn name(&self) -> &str[src]

Database name.

pub fn version(&self) -> f64[src]

Database version (type is not 'integer', as the standard requires the version number to be 'unsigned long long')

pub fn object_stores(&self) -> &[ObjectStore]

Notable traits for &'_ mut [u8]

impl<'_> Write for &'_ mut [u8]impl<'_> Read for &'_ [u8]
[src]

Object stores in this database.

Trait Implementations

impl Clone for RequestDatabaseReturn[src]

impl Debug for RequestDatabaseReturn[src]

impl Deref for RequestDatabaseReturn[src]

type Target = DatabaseWithObjectStores

The resulting type after dereferencing.

impl<'de> Deserialize<'de> for RequestDatabaseReturn[src]

impl Serialize for RequestDatabaseReturn[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.