Struct cdp::cache_storage::RequestEntriesResponse
[−]
[src]
pub struct RequestEntriesResponse<'a> {
pub cache_data_entries: Vec<DataEntry<'a>>,
pub has_more: bool,
}[Experimental] Requests data from cache.
Command CacheStorage.requestEntries
Domain Module: cdp::cache_storage
Command Struct: cdp::cache_storage::RequestEntriesCommand
Response Struct: cdp::cache_storage::RequestEntriesResponse
Fields
cache_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 RequestEntriesResponse<'a>[src]
fn clone(&self) -> RequestEntriesResponse<'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 RequestEntriesResponse<'a>[src]
impl<'a> PartialEq for RequestEntriesResponse<'a>[src]
fn eq(&self, __arg_0: &RequestEntriesResponse<'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: &RequestEntriesResponse<'a>) -> bool[src]
This method tests for !=.
impl<'a> CdpCommand for RequestEntriesResponse<'a>[src]
const COMMAND_NAME: &'static str
COMMAND_NAME: &'static str = "CacheStorage.requestEntries"