pub struct ClearObjectStore {
pub method: ClearObjectStoreMethod,
pub params: ClearObjectStoreParams,
}Expand description
Clears all entries from an object store. clearObjectStore
Fields§
§method: ClearObjectStoreMethod§params: ClearObjectStoreParamsImplementations§
Source§impl ClearObjectStore
impl ClearObjectStore
pub fn builder() -> ClearObjectStoreBuilder
Source§impl ClearObjectStore
impl ClearObjectStore
pub const IDENTIFIER: &'static str = "IndexedDB.clearObjectStore"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for ClearObjectStore
impl Clone for ClearObjectStore
Source§fn clone(&self) -> ClearObjectStore
fn clone(&self) -> ClearObjectStore
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl CommandResult for ClearObjectStore
impl CommandResult for ClearObjectStore
type Result = ClearObjectStoreResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for ClearObjectStore
impl Debug for ClearObjectStore
Source§impl<'de> Deserialize<'de> for ClearObjectStore
impl<'de> Deserialize<'de> for ClearObjectStore
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<ClearObjectStore> for BrowserProtocolCommands
impl From<ClearObjectStore> for BrowserProtocolCommands
Source§fn from(v: ClearObjectStore) -> Self
fn from(v: ClearObjectStore) -> Self
Converts to this type from the input type.
Source§impl From<ClearObjectStore> for Command
impl From<ClearObjectStore> for Command
Source§fn from(v: ClearObjectStore) -> Self
fn from(v: ClearObjectStore) -> Self
Converts to this type from the input type.
Source§impl From<ClearObjectStore> for IndexedDbCommands
impl From<ClearObjectStore> for IndexedDbCommands
Source§fn from(v: ClearObjectStore) -> Self
fn from(v: ClearObjectStore) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ClearObjectStore
impl PartialEq for ClearObjectStore
Source§impl Serialize for ClearObjectStore
impl Serialize for ClearObjectStore
Source§impl TryFrom<BrowserProtocolCommands> for ClearObjectStore
impl TryFrom<BrowserProtocolCommands> for ClearObjectStore
Source§type Error = BrowserProtocolCommands
type Error = BrowserProtocolCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolCommands,
) -> Result<Self, <ClearObjectStore as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <ClearObjectStore as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for ClearObjectStore
impl TryFrom<Command> for ClearObjectStore
Source§impl TryFrom<IndexedDbCommands> for ClearObjectStore
impl TryFrom<IndexedDbCommands> for ClearObjectStore
Source§type Error = IndexedDbCommands
type Error = IndexedDbCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: IndexedDbCommands,
) -> Result<Self, <ClearObjectStore as TryFrom<IndexedDbCommands>>::Error>
fn try_from( e: IndexedDbCommands, ) -> Result<Self, <ClearObjectStore as TryFrom<IndexedDbCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for ClearObjectStore
Auto Trait Implementations§
impl Freeze for ClearObjectStore
impl RefUnwindSafe for ClearObjectStore
impl Send for ClearObjectStore
impl Sync for ClearObjectStore
impl Unpin for ClearObjectStore
impl UnsafeUnpin for ClearObjectStore
impl UnwindSafe for ClearObjectStore
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more