pub struct DeleteDatabaseCommand { /* private fields */ }Available on crate features
experimental and IndexedDB and Runtime only.Expand description
Deletes a database.
Implementations§
Source§impl DeleteDatabaseCommand
impl DeleteDatabaseCommand
pub fn new(security_origin: String, database_name: String) -> Self
Sourcepub fn security_origin(&self) -> &str
pub fn security_origin(&self) -> &str
Security origin.
Sourcepub fn database_name(&self) -> &str
pub fn database_name(&self) -> &str
Database name.
Trait Implementations§
Source§impl Clone for DeleteDatabaseCommand
impl Clone for DeleteDatabaseCommand
Source§fn clone(&self) -> DeleteDatabaseCommand
fn clone(&self) -> DeleteDatabaseCommand
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 Command for DeleteDatabaseCommand
impl Command for DeleteDatabaseCommand
Source§impl Debug for DeleteDatabaseCommand
impl Debug for DeleteDatabaseCommand
Source§impl<'de> Deserialize<'de> for DeleteDatabaseCommand
impl<'de> Deserialize<'de> for DeleteDatabaseCommand
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
Auto Trait Implementations§
impl Freeze for DeleteDatabaseCommand
impl RefUnwindSafe for DeleteDatabaseCommand
impl Send for DeleteDatabaseCommand
impl Sync for DeleteDatabaseCommand
impl Unpin for DeleteDatabaseCommand
impl UnwindSafe for DeleteDatabaseCommand
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