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

Array of object store data entries.

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

Trait Implementations

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

[src]

Formats the value using the given formatter.

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

COMMAND_NAME: &'static str = "CacheStorage.requestEntries"

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