Struct cdp::indexed_db::RequestDataResponse [] [src]

pub struct RequestDataResponse<'a> {
    pub object_store_data_entries: Vec<DataEntry<'a>>,
    pub has_more: bool,
}

[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

Array of object store data entries.

If true, there are more entries to fetch in the given range.

Trait Implementations

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

[src]

Formats the value using the given formatter.

impl<'a> PartialEq for RequestDataResponse<'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 RequestDataResponse<'a>
[src]

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

impl<'a, 'b> HasCdpCommand<'a> for RequestDataResponse<'b>
[src]