pub struct SqlSelect {
pub project: Project,
pub from: SqlFrom<SqlAst>,
pub filter: Option<SqlExpr>,
}Expand description
A SELECT statement in the SQL subscription language
Fields§
§project: Project§from: SqlFrom<SqlAst>§filter: Option<SqlExpr>Auto Trait Implementations§
impl Freeze for SqlSelect
impl RefUnwindSafe for SqlSelect
impl Send for SqlSelect
impl Sync for SqlSelect
impl Unpin for SqlSelect
impl UnsafeUnpin for SqlSelect
impl UnwindSafe for SqlSelect
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