pub struct DropAggregateFunctionStatement {
pub if_exists: bool,
pub func: FunctionReference,
}
Fields§
§if_exists: bool
§func: FunctionReference
Trait Implementations§
Source§impl Clone for DropAggregateFunctionStatement
impl Clone for DropAggregateFunctionStatement
Source§fn clone(&self) -> DropAggregateFunctionStatement
fn clone(&self) -> DropAggregateFunctionStatement
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'a> CustomToTokens<'a> for DropAggregateFunctionStatement
impl<'a> CustomToTokens<'a> for DropAggregateFunctionStatement
Source§impl From<DropAggregateFunctionStatement> for Statement
impl From<DropAggregateFunctionStatement> for Statement
Source§fn from(v: DropAggregateFunctionStatement) -> Self
fn from(v: DropAggregateFunctionStatement) -> Self
Converts to this type from the input type.
Source§impl From<DropAggregateFunctionStatement> for UserDefinedFunctionStatement
impl From<DropAggregateFunctionStatement> for UserDefinedFunctionStatement
Source§fn from(
original: DropAggregateFunctionStatement,
) -> UserDefinedFunctionStatement
fn from( original: DropAggregateFunctionStatement, ) -> UserDefinedFunctionStatement
Converts to this type from the input type.
Source§impl Parse for DropAggregateFunctionStatement
impl Parse for DropAggregateFunctionStatement
type Output = DropAggregateFunctionStatement
fn parse(s: &mut StatementStream<'_>) -> Result<Self::Output>
Source§impl PartialEq for DropAggregateFunctionStatement
impl PartialEq for DropAggregateFunctionStatement
Source§fn eq(&self, other: &DropAggregateFunctionStatement) -> bool
fn eq(&self, other: &DropAggregateFunctionStatement) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl ToTokens for DropAggregateFunctionStatement
impl ToTokens for DropAggregateFunctionStatement
Source§fn to_token_stream(&self) -> TokenStream
fn to_token_stream(&self) -> TokenStream
Source§fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
impl Eq for DropAggregateFunctionStatement
impl StructuralPartialEq for DropAggregateFunctionStatement
Auto Trait Implementations§
impl Freeze for DropAggregateFunctionStatement
impl RefUnwindSafe for DropAggregateFunctionStatement
impl Send for DropAggregateFunctionStatement
impl Sync for DropAggregateFunctionStatement
impl Unpin for DropAggregateFunctionStatement
impl UnwindSafe for DropAggregateFunctionStatement
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