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