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