Struct cdp::indexed_db::RequestDataCommand [] [src]

pub struct RequestDataCommand<'a> {
    pub security_origin: Cow<'a, str>,
    pub database_name: Cow<'a, str>,
    pub object_store_name: Cow<'a, str>,
    pub index_name: Cow<'a, str>,
    pub skip_count: i32,
    pub page_size: i32,
    pub key_range: Option<KeyRange<'a>>,
}

[Experimental] Requests data from object store or index.

Command IndexedDB.requestData

Domain Module: cdp::indexed_db
Command Struct: cdp::indexed_db::RequestDataCommand
Response Struct: cdp::indexed_db::RequestDataResponse

Fields

Security origin.

Database name.

Object store name.

Index name, empty string for object store data requests.

Number of records to skip.

Number of records to fetch.

Key range.

Trait Implementations

impl<'a> Clone for RequestDataCommand<'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 RequestDataCommand<'a>
[src]

[src]

Formats the value using the given formatter.

impl<'a> PartialEq for RequestDataCommand<'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 !=.

impl<'a> CdpCommand for RequestDataCommand<'a>
[src]

COMMAND_NAME: &'static str = "IndexedDB.requestData"

impl<'a> SerializeCdpCommand for RequestDataCommand<'a>
[src]

[src]

[src]

impl<'de, 'a> DeserializeCdpCommand<'de> for RequestDataCommand<'a>
[src]

[src]

impl<'b, 'a> HasCdpResponse<'b> for RequestDataCommand<'a>
[src]