Struct cdp::cache_storage::DeleteEntryCommand [] [src]

pub struct DeleteEntryCommand<'a> {
    pub cache_id: CacheId<'a>,
    pub request: Cow<'a, str>,
}

[Experimental] Deletes a cache entry.

Command CacheStorage.deleteEntry

Domain Module: cdp::cache_storage
Command Struct: cdp::cache_storage::DeleteEntryCommand
Response Struct: cdp::cache_storage::DeleteEntryResponse

Fields

Id of cache where the entry will be deleted.

URL spec of the request.

Trait Implementations

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

[src]

Formats the value using the given formatter.

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

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

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

[src]

[src]

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

[src]

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