Struct scylladb_parse::OrderByClause
source · [−]pub struct OrderByClause {
pub columns: Vec<ColumnOrder>,
}Fields
columns: Vec<ColumnOrder>Trait Implementations
sourceimpl Clone for OrderByClause
impl Clone for OrderByClause
sourcefn clone(&self) -> OrderByClause
fn clone(&self) -> OrderByClause
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 OrderByClause
impl<'a> CustomToTokens<'a> for OrderByClause
fn to_tokens(&'a self, tokens: &mut TokenStream)
sourceimpl Debug for OrderByClause
impl Debug for OrderByClause
sourceimpl Display for OrderByClause
impl Display for OrderByClause
sourceimpl<T: Into<ColumnOrder>> From<Vec<T, Global>> for OrderByClause
impl<T: Into<ColumnOrder>> From<Vec<T, Global>> for OrderByClause
sourceimpl Parse for OrderByClause
impl Parse for OrderByClause
type Output = OrderByClause
fn parse(s: &mut StatementStream<'_>) -> Result<Self>
sourceimpl PartialEq<OrderByClause> for OrderByClause
impl PartialEq<OrderByClause> for OrderByClause
sourcefn eq(&self, other: &OrderByClause) -> bool
fn eq(&self, other: &OrderByClause) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &OrderByClause) -> bool
fn ne(&self, other: &OrderByClause) -> bool
This method tests for !=.
sourceimpl ToTokens for OrderByClause
impl ToTokens for OrderByClause
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 OrderByClause
impl StructuralEq for OrderByClause
impl StructuralPartialEq for OrderByClause
Auto Trait Implementations
impl RefUnwindSafe for OrderByClause
impl Send for OrderByClause
impl Sync for OrderByClause
impl Unpin for OrderByClause
impl UnwindSafe for OrderByClause
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