pub struct TaggedCreateAggregateFunctionStatementBuilder { /* private fields */ }
Expand description
Builder for TaggedCreateAggregateFunctionStatement
.
Implementations§
Source§impl 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§
Source§impl Clone for TaggedCreateAggregateFunctionStatementBuilder
impl Clone for TaggedCreateAggregateFunctionStatementBuilder
Source§fn clone(&self) -> TaggedCreateAggregateFunctionStatementBuilder
fn clone(&self) -> TaggedCreateAggregateFunctionStatementBuilder
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 moreAuto Trait Implementations§
impl Freeze for TaggedCreateAggregateFunctionStatementBuilder
impl RefUnwindSafe for TaggedCreateAggregateFunctionStatementBuilder
impl Send for TaggedCreateAggregateFunctionStatementBuilder
impl Sync for TaggedCreateAggregateFunctionStatementBuilder
impl Unpin for TaggedCreateAggregateFunctionStatementBuilder
impl UnwindSafe for TaggedCreateAggregateFunctionStatementBuilder
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