pub struct DropDatabase {
pub name: Identifier,
pub if_exists: bool,
}Expand description
DROP DATABASE statement
Fields§
§name: Identifier§if_exists: boolImplementations§
Trait Implementations§
Source§impl Clone for DropDatabase
impl Clone for DropDatabase
Source§fn clone(&self) -> DropDatabase
fn clone(&self) -> DropDatabase
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 Debug for DropDatabase
impl Debug for DropDatabase
Source§impl<'de> Deserialize<'de> for DropDatabase
impl<'de> Deserialize<'de> for DropDatabase
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 PartialEq for DropDatabase
impl PartialEq for DropDatabase
Source§impl Serialize for DropDatabase
impl Serialize for DropDatabase
impl StructuralPartialEq for DropDatabase
Auto Trait Implementations§
impl Freeze for DropDatabase
impl RefUnwindSafe for DropDatabase
impl Send for DropDatabase
impl Sync for DropDatabase
impl Unpin for DropDatabase
impl UnwindSafe for DropDatabase
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