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
object_store_data_entries: Vec<DataEntry<'a>>
Array of object store data entries.
has_more: bool
If true, there are more entries to fetch in the given range.
Trait Implementations
impl<'a> Clone for RequestDataResponse<'a>
[src]
fn clone(&self) -> RequestDataResponse<'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 RequestDataResponse<'a>
[src]
impl<'a> PartialEq for RequestDataResponse<'a>
[src]
fn eq(&self, __arg_0: &RequestDataResponse<'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: &RequestDataResponse<'a>) -> bool
[src]
This method tests for !=
.
impl<'a> CdpCommand for RequestDataResponse<'a>
[src]
const COMMAND_NAME: &'static str
COMMAND_NAME: &'static str = "IndexedDB.requestData"