pub struct DeleteDatabase {
pub method: DeleteDatabaseMethod,
pub params: DeleteDatabaseParams,
}Expand description
Deletes a database. deleteDatabase
Fields§
§method: DeleteDatabaseMethod§params: DeleteDatabaseParamsImplementations§
Source§impl DeleteDatabase
impl DeleteDatabase
pub fn builder() -> DeleteDatabaseBuilder
Source§impl DeleteDatabase
impl DeleteDatabase
pub const IDENTIFIER: &'static str = "IndexedDB.deleteDatabase"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for DeleteDatabase
impl Clone for DeleteDatabase
Source§fn clone(&self) -> DeleteDatabase
fn clone(&self) -> DeleteDatabase
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 DeleteDatabase
impl CommandResult for DeleteDatabase
type Result = DeleteDatabaseResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for DeleteDatabase
impl Debug for DeleteDatabase
Source§impl<'de> Deserialize<'de> for DeleteDatabase
impl<'de> Deserialize<'de> for DeleteDatabase
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<DeleteDatabase> for BrowserProtocolCommands
impl From<DeleteDatabase> for BrowserProtocolCommands
Source§fn from(v: DeleteDatabase) -> Self
fn from(v: DeleteDatabase) -> Self
Converts to this type from the input type.
Source§impl From<DeleteDatabase> for Command
impl From<DeleteDatabase> for Command
Source§fn from(v: DeleteDatabase) -> Self
fn from(v: DeleteDatabase) -> Self
Converts to this type from the input type.
Source§impl From<DeleteDatabase> for IndexedDbCommands
impl From<DeleteDatabase> for IndexedDbCommands
Source§fn from(v: DeleteDatabase) -> Self
fn from(v: DeleteDatabase) -> Self
Converts to this type from the input type.
Source§impl PartialEq for DeleteDatabase
impl PartialEq for DeleteDatabase
Source§impl Serialize for DeleteDatabase
impl Serialize for DeleteDatabase
Source§impl TryFrom<BrowserProtocolCommands> for DeleteDatabase
impl TryFrom<BrowserProtocolCommands> for DeleteDatabase
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, <DeleteDatabase as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <DeleteDatabase as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for DeleteDatabase
impl TryFrom<Command> for DeleteDatabase
Source§impl TryFrom<IndexedDbCommands> for DeleteDatabase
impl TryFrom<IndexedDbCommands> for DeleteDatabase
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, <DeleteDatabase as TryFrom<IndexedDbCommands>>::Error>
fn try_from( e: IndexedDbCommands, ) -> Result<Self, <DeleteDatabase as TryFrom<IndexedDbCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for DeleteDatabase
Auto Trait Implementations§
impl Freeze for DeleteDatabase
impl RefUnwindSafe for DeleteDatabase
impl Send for DeleteDatabase
impl Sync for DeleteDatabase
impl Unpin for DeleteDatabase
impl UnsafeUnpin for DeleteDatabase
impl UnwindSafe for DeleteDatabase
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