pub struct DropFunctionStmt {
pub function_name: String,
pub if_exists: bool,
}Expand description
DROP FUNCTION statement
Fields§
§function_name: String§if_exists: boolTrait Implementations§
Source§impl Clone for DropFunctionStmt
impl Clone for DropFunctionStmt
Source§fn clone(&self) -> DropFunctionStmt
fn clone(&self) -> DropFunctionStmt
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 DropFunctionStmt
impl Debug for DropFunctionStmt
Source§impl PartialEq for DropFunctionStmt
impl PartialEq for DropFunctionStmt
impl StructuralPartialEq for DropFunctionStmt
Auto Trait Implementations§
impl Freeze for DropFunctionStmt
impl RefUnwindSafe for DropFunctionStmt
impl Send for DropFunctionStmt
impl Sync for DropFunctionStmt
impl Unpin for DropFunctionStmt
impl UnwindSafe for DropFunctionStmt
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