pub struct DropFunctionStatement {
pub if_exists: bool,
pub sp_name: String,
}
Expand description
parse DROP FUNCTION [IF EXISTS] sp_name
Fields§
§if_exists: bool
§sp_name: String
Implementations§
Source§impl DropFunctionStatement
impl DropFunctionStatement
pub fn parse( i: &str, ) -> IResult<&str, DropFunctionStatement, ParseSQLError<&str>>
Trait Implementations§
Source§impl Clone for DropFunctionStatement
impl Clone for DropFunctionStatement
Source§fn clone(&self) -> DropFunctionStatement
fn clone(&self) -> DropFunctionStatement
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 DropFunctionStatement
impl Debug for DropFunctionStatement
Source§impl<'de> Deserialize<'de> for DropFunctionStatement
impl<'de> Deserialize<'de> for DropFunctionStatement
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 Display for DropFunctionStatement
impl Display for DropFunctionStatement
Source§impl Hash for DropFunctionStatement
impl Hash for DropFunctionStatement
Source§impl PartialEq for DropFunctionStatement
impl PartialEq for DropFunctionStatement
Source§impl Serialize for DropFunctionStatement
impl Serialize for DropFunctionStatement
impl Eq for DropFunctionStatement
impl StructuralPartialEq for DropFunctionStatement
Auto Trait Implementations§
impl Freeze for DropFunctionStatement
impl RefUnwindSafe for DropFunctionStatement
impl Send for DropFunctionStatement
impl Sync for DropFunctionStatement
impl Unpin for DropFunctionStatement
impl UnwindSafe for DropFunctionStatement
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