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