Struct scylladb_parse::DeleteStatementBuilder
source · [−]pub struct DeleteStatementBuilder { /* private fields */ }Expand description
Builder for DeleteStatement.
Implementations
sourceimpl DeleteStatementBuilder
impl DeleteStatementBuilder
pub fn selections(&mut self, value: Vec<SimpleSelection>) -> &mut Self
pub fn from<VALUE: Into<KeyspaceQualifiedName>>(
&mut self,
value: VALUE
) -> &mut Self
pub fn using(&mut self, value: Vec<UpdateParameter>) -> &mut Self
pub fn where_clause<VALUE: Into<WhereClause>>(
&mut self,
value: VALUE
) -> &mut Self
pub fn if_clause(&mut self, value: IfClause) -> &mut Self
sourcepub fn build(&self) -> Result<DeleteStatement, DeleteStatementBuilderError>
pub fn build(&self) -> Result<DeleteStatement, DeleteStatementBuilderError>
Trait Implementations
sourceimpl Clone for DeleteStatementBuilder
impl Clone for DeleteStatementBuilder
sourcefn clone(&self) -> DeleteStatementBuilder
fn clone(&self) -> DeleteStatementBuilder
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 DeleteStatementBuilder
impl Send for DeleteStatementBuilder
impl Sync for DeleteStatementBuilder
impl Unpin for DeleteStatementBuilder
impl UnwindSafe for DeleteStatementBuilder
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