pub struct Stmt<'i> {
pub selectors: Vec<Selector<'i>>,
pub from: FromClause<'i>,
pub where_clause: Option<Expr<'i>>,
}Expand description
A single select ... from ... [where ...] statement.
Fields§
§selectors: Vec<Selector<'i>>Aggregate selectors in the select list.
from: FromClause<'i>from clause.
where_clause: Option<Expr<'i>>Optional where predicate.
Implementations§
Trait Implementations§
impl<'i> StructuralPartialEq for Stmt<'i>
Auto Trait Implementations§
impl<'i> Freeze for Stmt<'i>
impl<'i> RefUnwindSafe for Stmt<'i>
impl<'i> Send for Stmt<'i>
impl<'i> Sync for Stmt<'i>
impl<'i> Unpin for Stmt<'i>
impl<'i> UnsafeUnpin for Stmt<'i>
impl<'i> UnwindSafe for Stmt<'i>
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