pub struct DeleteObjectStoreEntries {
pub method: DeleteObjectStoreEntriesMethod,
pub params: DeleteObjectStoreEntriesParams,
}Expand description
Delete a range of entries from an object store deleteObjectStoreEntries
Fields§
§method: DeleteObjectStoreEntriesMethod§params: DeleteObjectStoreEntriesParamsImplementations§
Source§impl DeleteObjectStoreEntries
impl DeleteObjectStoreEntries
pub const IDENTIFIER: &'static str = "IndexedDB.deleteObjectStoreEntries"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for DeleteObjectStoreEntries
impl Clone for DeleteObjectStoreEntries
Source§fn clone(&self) -> DeleteObjectStoreEntries
fn clone(&self) -> DeleteObjectStoreEntries
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 DeleteObjectStoreEntries
impl CommandResult for DeleteObjectStoreEntries
type Result = DeleteObjectStoreEntriesResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for DeleteObjectStoreEntries
impl Debug for DeleteObjectStoreEntries
Source§impl<'de> Deserialize<'de> for DeleteObjectStoreEntries
impl<'de> Deserialize<'de> for DeleteObjectStoreEntries
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<DeleteObjectStoreEntries> for BrowserProtocolCommands
impl From<DeleteObjectStoreEntries> for BrowserProtocolCommands
Source§fn from(v: DeleteObjectStoreEntries) -> Self
fn from(v: DeleteObjectStoreEntries) -> Self
Converts to this type from the input type.
Source§impl From<DeleteObjectStoreEntries> for Command
impl From<DeleteObjectStoreEntries> for Command
Source§fn from(v: DeleteObjectStoreEntries) -> Self
fn from(v: DeleteObjectStoreEntries) -> Self
Converts to this type from the input type.
Source§impl From<DeleteObjectStoreEntries> for IndexedDbCommands
impl From<DeleteObjectStoreEntries> for IndexedDbCommands
Source§fn from(v: DeleteObjectStoreEntries) -> Self
fn from(v: DeleteObjectStoreEntries) -> Self
Converts to this type from the input type.
Source§impl PartialEq for DeleteObjectStoreEntries
impl PartialEq for DeleteObjectStoreEntries
Source§impl Serialize for DeleteObjectStoreEntries
impl Serialize for DeleteObjectStoreEntries
Source§impl TryFrom<BrowserProtocolCommands> for DeleteObjectStoreEntries
impl TryFrom<BrowserProtocolCommands> for DeleteObjectStoreEntries
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, <DeleteObjectStoreEntries as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <DeleteObjectStoreEntries as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for DeleteObjectStoreEntries
impl TryFrom<Command> for DeleteObjectStoreEntries
Source§impl TryFrom<IndexedDbCommands> for DeleteObjectStoreEntries
impl TryFrom<IndexedDbCommands> for DeleteObjectStoreEntries
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, <DeleteObjectStoreEntries as TryFrom<IndexedDbCommands>>::Error>
fn try_from( e: IndexedDbCommands, ) -> Result<Self, <DeleteObjectStoreEntries as TryFrom<IndexedDbCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for DeleteObjectStoreEntries
Auto Trait Implementations§
impl Freeze for DeleteObjectStoreEntries
impl RefUnwindSafe for DeleteObjectStoreEntries
impl Send for DeleteObjectStoreEntries
impl Sync for DeleteObjectStoreEntries
impl Unpin for DeleteObjectStoreEntries
impl UnsafeUnpin for DeleteObjectStoreEntries
impl UnwindSafe for DeleteObjectStoreEntries
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