Struct cdp::indexed_db::ClearObjectStoreCommand [] [src]

pub struct ClearObjectStoreCommand<'a> {
    pub security_origin: Cow<'a, str>,
    pub database_name: Cow<'a, str>,
    pub object_store_name: Cow<'a, str>,
}

[Experimental] Clears all entries from an object store.

Command IndexedDB.clearObjectStore

Domain Module: cdp::indexed_db
Command Struct: cdp::indexed_db::ClearObjectStoreCommand
Response Struct: cdp::indexed_db::ClearObjectStoreResponse

Fields

Security origin.

Database name.

Object store name.

Trait Implementations

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

[src]

Formats the value using the given formatter.

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

COMMAND_NAME: &'static str = "IndexedDB.clearObjectStore"

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

[src]

[src]

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

[src]

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