Struct scylladb_parse::TaggedSelectStatement
source · [−]pub struct TaggedSelectStatement {
pub distinct: bool,
pub select_clause: Tag<SelectClause>,
pub from: TaggedKeyspaceQualifiedName,
pub where_clause: Option<Tag<WhereClause>>,
pub group_by_clause: Option<Tag<GroupByClause>>,
pub order_by_clause: Option<Tag<OrderByClause>>,
pub per_partition_limit: Option<Tag<Limit>>,
pub limit: Option<Tag<Limit>>,
pub allow_filtering: bool,
pub bypass_cache: bool,
pub timeout: Option<Tag<DurationLiteral>>,
}Fields
distinct: boolselect_clause: Tag<SelectClause>from: TaggedKeyspaceQualifiedNamewhere_clause: Option<Tag<WhereClause>>group_by_clause: Option<Tag<GroupByClause>>order_by_clause: Option<Tag<OrderByClause>>per_partition_limit: Option<Tag<Limit>>limit: Option<Tag<Limit>>allow_filtering: boolbypass_cache: booltimeout: Option<Tag<DurationLiteral>>Trait Implementations
sourceimpl Clone for TaggedSelectStatement
impl Clone for TaggedSelectStatement
sourcefn clone(&self) -> TaggedSelectStatement
fn clone(&self) -> TaggedSelectStatement
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
sourceimpl<'a> CustomToTokens<'a> for TaggedSelectStatement
impl<'a> CustomToTokens<'a> for TaggedSelectStatement
fn to_tokens(&'a self, tokens: &mut TokenStream)
sourceimpl Debug for TaggedSelectStatement
impl Debug for TaggedSelectStatement
sourceimpl From<TaggedSelectStatement> for TaggedDataManipulationStatement
impl From<TaggedSelectStatement> for TaggedDataManipulationStatement
sourcefn from(original: TaggedSelectStatement) -> TaggedDataManipulationStatement
fn from(original: TaggedSelectStatement) -> TaggedDataManipulationStatement
Converts to this type from the input type.
sourceimpl From<TaggedSelectStatement> for TaggedStatement
impl From<TaggedSelectStatement> for TaggedStatement
sourcefn from(v: TaggedSelectStatement) -> Self
fn from(v: TaggedSelectStatement) -> Self
Converts to this type from the input type.
sourceimpl FromStr for TaggedSelectStatement
impl FromStr for TaggedSelectStatement
sourceimpl Parse for TaggedSelectStatement
impl Parse for TaggedSelectStatement
type Output = TaggedSelectStatement
fn parse(s: &mut StatementStream<'_>) -> Result<Self::Output> where
Self: Sized,
sourceimpl PartialEq<TaggedSelectStatement> for TaggedSelectStatement
impl PartialEq<TaggedSelectStatement> for TaggedSelectStatement
sourcefn eq(&self, other: &TaggedSelectStatement) -> bool
fn eq(&self, other: &TaggedSelectStatement) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &TaggedSelectStatement) -> bool
fn ne(&self, other: &TaggedSelectStatement) -> bool
This method tests for !=.
sourceimpl ToTokens for TaggedSelectStatement
impl ToTokens for TaggedSelectStatement
sourcefn to_tokens(&self, tokens: &mut TokenStream)
fn to_tokens(&self, tokens: &mut TokenStream)
Write self to the given TokenStream. Read more
sourcefn to_token_stream(&self) -> TokenStream
fn to_token_stream(&self) -> TokenStream
Convert self directly into a TokenStream object. Read more
sourcefn into_token_stream(self) -> TokenStream
fn into_token_stream(self) -> TokenStream
Convert self directly into a TokenStream object. Read more
impl Eq for TaggedSelectStatement
impl StructuralEq for TaggedSelectStatement
impl StructuralPartialEq for TaggedSelectStatement
Auto Trait Implementations
impl RefUnwindSafe for TaggedSelectStatement
impl Send for TaggedSelectStatement
impl Sync for TaggedSelectStatement
impl Unpin for TaggedSelectStatement
impl UnwindSafe for TaggedSelectStatement
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