pub struct TaggedSelectStatementBuilder { /* private fields */ }
Expand description
Builder for TaggedSelectStatement
.
Implementations§
Source§impl TaggedSelectStatementBuilder
impl TaggedSelectStatementBuilder
pub fn set_distinct(&mut self, value: bool) -> &mut Self
pub fn select_clause(&mut self, value: Tag<SelectClause>) -> &mut Self
pub fn from(&mut self, value: TaggedKeyspaceQualifiedName) -> &mut Self
pub fn where_clause(&mut self, value: Tag<WhereClause>) -> &mut Self
pub fn group_by_clause(&mut self, value: Tag<GroupByClause>) -> &mut Self
pub fn order_by_clause(&mut self, value: Tag<OrderByClause>) -> &mut Self
pub fn per_partition_limit(&mut self, value: Tag<Limit>) -> &mut Self
pub fn limit(&mut self, value: Tag<Limit>) -> &mut Self
pub fn set_allow_filtering(&mut self, value: bool) -> &mut Self
pub fn set_bypass_cache(&mut self, value: bool) -> &mut Self
pub fn timeout(&mut self, value: Tag<DurationLiteral>) -> &mut Self
Sourcepub fn build(
&self,
) -> Result<TaggedSelectStatement, TaggedSelectStatementBuilderError>
pub fn build( &self, ) -> Result<TaggedSelectStatement, TaggedSelectStatementBuilderError>
Trait Implementations§
Source§impl Clone for TaggedSelectStatementBuilder
impl Clone for TaggedSelectStatementBuilder
Source§fn clone(&self) -> TaggedSelectStatementBuilder
fn clone(&self) -> TaggedSelectStatementBuilder
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 TaggedSelectStatementBuilder
impl RefUnwindSafe for TaggedSelectStatementBuilder
impl Send for TaggedSelectStatementBuilder
impl Sync for TaggedSelectStatementBuilder
impl Unpin for TaggedSelectStatementBuilder
impl UnwindSafe for TaggedSelectStatementBuilder
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