pub struct TaggedDropAggregateFunctionStatement {
pub if_exists: bool,
pub func: Tag<FunctionReference>,
}Fields
if_exists: boolfunc: Tag<FunctionReference>Trait Implementations
sourceimpl Clone for TaggedDropAggregateFunctionStatement
impl Clone for TaggedDropAggregateFunctionStatement
sourcefn clone(&self) -> TaggedDropAggregateFunctionStatement
fn clone(&self) -> TaggedDropAggregateFunctionStatement
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 TaggedDropAggregateFunctionStatement
impl<'a> CustomToTokens<'a> for TaggedDropAggregateFunctionStatement
fn to_tokens(&'a self, tokens: &mut TokenStream)
sourceimpl From<TaggedDropAggregateFunctionStatement> for TaggedUserDefinedFunctionStatement
impl From<TaggedDropAggregateFunctionStatement> for TaggedUserDefinedFunctionStatement
sourcefn from(
original: TaggedDropAggregateFunctionStatement
) -> TaggedUserDefinedFunctionStatement
fn from(
original: TaggedDropAggregateFunctionStatement
) -> TaggedUserDefinedFunctionStatement
Converts to this type from the input type.
sourceimpl From<TaggedDropAggregateFunctionStatement> for TaggedStatement
impl From<TaggedDropAggregateFunctionStatement> for TaggedStatement
sourcefn from(v: TaggedDropAggregateFunctionStatement) -> Self
fn from(v: TaggedDropAggregateFunctionStatement) -> Self
Converts to this type from the input type.
sourceimpl Parse for TaggedDropAggregateFunctionStatement
impl Parse for TaggedDropAggregateFunctionStatement
type Output = TaggedDropAggregateFunctionStatement
fn parse(s: &mut StatementStream<'_>) -> Result<Self::Output>
sourceimpl PartialEq<TaggedDropAggregateFunctionStatement> for TaggedDropAggregateFunctionStatement
impl PartialEq<TaggedDropAggregateFunctionStatement> for TaggedDropAggregateFunctionStatement
sourcefn eq(&self, other: &TaggedDropAggregateFunctionStatement) -> bool
fn eq(&self, other: &TaggedDropAggregateFunctionStatement) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &TaggedDropAggregateFunctionStatement) -> bool
fn ne(&self, other: &TaggedDropAggregateFunctionStatement) -> bool
This method tests for !=.
sourceimpl ToTokens for TaggedDropAggregateFunctionStatement
impl ToTokens for TaggedDropAggregateFunctionStatement
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 TaggedDropAggregateFunctionStatement
impl StructuralEq for TaggedDropAggregateFunctionStatement
impl StructuralPartialEq for TaggedDropAggregateFunctionStatement
Auto Trait Implementations
impl RefUnwindSafe for TaggedDropAggregateFunctionStatement
impl Send for TaggedDropAggregateFunctionStatement
impl Sync for TaggedDropAggregateFunctionStatement
impl Unpin for TaggedDropAggregateFunctionStatement
impl UnwindSafe for TaggedDropAggregateFunctionStatement
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