Struct gitql_ast::statement::OrderByStatement
source · pub struct OrderByStatement {
pub field_name: String,
pub is_ascending: bool,
pub field_type: DataType,
}
Fields§
§field_name: String
§is_ascending: bool
§field_type: DataType
Trait Implementations§
source§impl Statement for OrderByStatement
impl Statement for OrderByStatement
fn as_any(&self) -> &dyn Any
fn get_statement_kind(&self) -> StatementKind
Auto Trait Implementations§
impl RefUnwindSafe for OrderByStatement
impl Send for OrderByStatement
impl Sync for OrderByStatement
impl Unpin for OrderByStatement
impl UnwindSafe for OrderByStatement
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