pub struct TaggedCreateAggregateFunctionStatementBuilder { /* private fields */ }Expand description
Builder for TaggedCreateAggregateFunctionStatement.
Implementations
sourceimpl TaggedCreateAggregateFunctionStatementBuilder
impl TaggedCreateAggregateFunctionStatementBuilder
pub fn set_or_replace(&mut self, value: bool) -> &mut Self
pub fn set_if_not_exists(&mut self, value: bool) -> &mut Self
pub fn func(&mut self, value: Tag<FunctionSignature>) -> &mut Self
pub fn state_modifying_fn(&mut self, value: Tag<FunctionName>) -> &mut Self
pub fn state_value_type(&mut self, value: Tag<CqlType>) -> &mut Self
pub fn final_fn(&mut self, value: Tag<FunctionName>) -> &mut Self
pub fn init_condition(&mut self, value: Tag<Term>) -> &mut Self
sourcepub fn build(
&self
) -> Result<TaggedCreateAggregateFunctionStatement, TaggedCreateAggregateFunctionStatementBuilderError>
pub fn build(
&self
) -> Result<TaggedCreateAggregateFunctionStatement, TaggedCreateAggregateFunctionStatementBuilderError>
Builds a new TaggedCreateAggregateFunctionStatement.
Errors
If a required field has not been initialized.
Trait Implementations
sourceimpl Clone for TaggedCreateAggregateFunctionStatementBuilder
impl Clone for TaggedCreateAggregateFunctionStatementBuilder
sourcefn clone(&self) -> TaggedCreateAggregateFunctionStatementBuilder
fn clone(&self) -> TaggedCreateAggregateFunctionStatementBuilder
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
Auto Trait Implementations
impl RefUnwindSafe for TaggedCreateAggregateFunctionStatementBuilder
impl Send for TaggedCreateAggregateFunctionStatementBuilder
impl Sync for TaggedCreateAggregateFunctionStatementBuilder
impl Unpin for TaggedCreateAggregateFunctionStatementBuilder
impl UnwindSafe for TaggedCreateAggregateFunctionStatementBuilder
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