Struct chrome_remote_interface_model::indexed_db::RequestDataCommand[][src]

pub struct RequestDataCommand { /* fields omitted */ }
This is supported on crate features experimental and IndexedDB and Runtime only.

Requests data from object store or index.

Implementations

impl RequestDataCommand[src]

pub fn builder() -> RequestDataCommandBuilder[src]

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

Security origin.

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

Database name.

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

Object store name.

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

Index name, empty string for object store data requests.

pub fn skip_count(&self) -> u32[src]

Number of records to skip.

pub fn page_size(&self) -> u32[src]

Number of records to fetch.

pub fn key_range(&self) -> Option<&KeyRange>[src]

Key range.

Trait Implementations

impl Clone for RequestDataCommand[src]

impl Command for RequestDataCommand[src]

type Return = RequestDataReturn

Return type.

impl Debug for RequestDataCommand[src]

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

impl Serialize for RequestDataCommand[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.