pub struct TaggedInsertStatementBuilder { /* private fields */ }
Expand description
Builder for TaggedInsertStatement
.
Implementations§
Source§impl TaggedInsertStatementBuilder
impl TaggedInsertStatementBuilder
pub fn table(&mut self, value: TaggedKeyspaceQualifiedName) -> &mut Self
pub fn kind(&mut self, value: InsertKind) -> &mut Self
pub fn set_if_not_exists(&mut self, value: bool) -> &mut Self
pub fn using(&mut self, value: Tag<Vec<UpdateParameter>>) -> &mut Self
Sourcepub fn build(
&self,
) -> Result<TaggedInsertStatement, TaggedInsertStatementBuilderError>
pub fn build( &self, ) -> Result<TaggedInsertStatement, TaggedInsertStatementBuilderError>
Trait Implementations§
Source§impl Clone for TaggedInsertStatementBuilder
impl Clone for TaggedInsertStatementBuilder
Source§fn clone(&self) -> TaggedInsertStatementBuilder
fn clone(&self) -> TaggedInsertStatementBuilder
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 TaggedInsertStatementBuilder
impl RefUnwindSafe for TaggedInsertStatementBuilder
impl Send for TaggedInsertStatementBuilder
impl Sync for TaggedInsertStatementBuilder
impl Unpin for TaggedInsertStatementBuilder
impl UnwindSafe for TaggedInsertStatementBuilder
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