Struct chrome_remote_interface_model::cache_storage::DeleteEntryCommand[][src]

pub struct DeleteEntryCommand { /* fields omitted */ }

Deletes a cache entry.

Implementations

impl DeleteEntryCommand[src]

pub fn new(cache_id: CacheId, request: String) -> Self[src]

pub fn cache_id(&self) -> &CacheId[src]

Id of cache where the entry will be deleted.

pub fn request(&self) -> &str[src]

URL spec of the request.

Trait Implementations

impl Clone for DeleteEntryCommand[src]

impl Command for DeleteEntryCommand[src]

type Return = DeleteEntryReturn

Return type.

impl Debug for DeleteEntryCommand[src]

impl<'de> Deserialize<'de> for DeleteEntryCommand[src]

impl Serialize for DeleteEntryCommand[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.