pub struct TaggedUpdateStatementBuilder { /* private fields */ }Expand description
Builder for TaggedUpdateStatement.
Implementations
sourceimpl TaggedUpdateStatementBuilder
impl TaggedUpdateStatementBuilder
pub fn table(&mut self, value: TaggedKeyspaceQualifiedName) -> &mut Self
pub fn using(&mut self, value: Tag<Vec<UpdateParameter>>) -> &mut Self
pub fn set_clause(&mut self, value: Tag<Vec<Assignment>>) -> &mut Self
pub fn where_clause(&mut self, value: Tag<WhereClause>) -> &mut Self
pub fn if_clause(&mut self, value: Tag<IfClause>) -> &mut Self
sourcepub fn build(
&self
) -> Result<TaggedUpdateStatement, TaggedUpdateStatementBuilderError>
pub fn build(
&self
) -> Result<TaggedUpdateStatement, TaggedUpdateStatementBuilderError>
Trait Implementations
sourceimpl Clone for TaggedUpdateStatementBuilder
impl Clone for TaggedUpdateStatementBuilder
sourcefn clone(&self) -> TaggedUpdateStatementBuilder
fn clone(&self) -> TaggedUpdateStatementBuilder
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 TaggedUpdateStatementBuilder
impl Send for TaggedUpdateStatementBuilder
impl Sync for TaggedUpdateStatementBuilder
impl Unpin for TaggedUpdateStatementBuilder
impl UnwindSafe for TaggedUpdateStatementBuilder
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