pub struct DropAggregateFunctionStatement {
pub if_exists: bool,
pub func: FunctionReference,
}Fields
if_exists: boolfunc: FunctionReferenceTrait Implementations
sourceimpl Clone for DropAggregateFunctionStatement
impl Clone for DropAggregateFunctionStatement
sourcefn clone(&self) -> DropAggregateFunctionStatement
fn clone(&self) -> DropAggregateFunctionStatement
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl<'a> CustomToTokens<'a> for DropAggregateFunctionStatement
impl<'a> CustomToTokens<'a> for DropAggregateFunctionStatement
fn to_tokens(&'a self, tokens: &mut TokenStream)
sourceimpl From<DropAggregateFunctionStatement> for UserDefinedFunctionStatement
impl From<DropAggregateFunctionStatement> for UserDefinedFunctionStatement
sourcefn from(
original: DropAggregateFunctionStatement
) -> UserDefinedFunctionStatement
fn from(
original: DropAggregateFunctionStatement
) -> UserDefinedFunctionStatement
Converts to this type from the input type.
sourceimpl From<DropAggregateFunctionStatement> for Statement
impl From<DropAggregateFunctionStatement> for Statement
sourcefn from(v: DropAggregateFunctionStatement) -> Self
fn from(v: DropAggregateFunctionStatement) -> Self
Converts to this type from the input type.
sourceimpl Parse for DropAggregateFunctionStatement
impl Parse for DropAggregateFunctionStatement
type Output = DropAggregateFunctionStatement
fn parse(s: &mut StatementStream<'_>) -> Result<Self::Output>
sourceimpl PartialEq<DropAggregateFunctionStatement> for DropAggregateFunctionStatement
impl PartialEq<DropAggregateFunctionStatement> for DropAggregateFunctionStatement
sourcefn eq(&self, other: &DropAggregateFunctionStatement) -> bool
fn eq(&self, other: &DropAggregateFunctionStatement) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &DropAggregateFunctionStatement) -> bool
fn ne(&self, other: &DropAggregateFunctionStatement) -> bool
This method tests for !=.
sourceimpl ToTokens for DropAggregateFunctionStatement
impl ToTokens for DropAggregateFunctionStatement
sourcefn to_tokens(&self, tokens: &mut TokenStream)
fn to_tokens(&self, tokens: &mut TokenStream)
Write self to the given TokenStream. Read more
sourcefn to_token_stream(&self) -> TokenStream
fn to_token_stream(&self) -> TokenStream
Convert self directly into a TokenStream object. Read more
sourcefn into_token_stream(self) -> TokenStream
fn into_token_stream(self) -> TokenStream
Convert self directly into a TokenStream object. Read more
impl Eq for DropAggregateFunctionStatement
impl StructuralEq for DropAggregateFunctionStatement
impl StructuralPartialEq for DropAggregateFunctionStatement
Auto Trait Implementations
impl RefUnwindSafe for DropAggregateFunctionStatement
impl Send for DropAggregateFunctionStatement
impl Sync for DropAggregateFunctionStatement
impl Unpin for DropAggregateFunctionStatement
impl UnwindSafe for DropAggregateFunctionStatement
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more