pub enum SqlResult {
SourceCreated {
name: String,
},
Query {
plan: QueryPlan,
},
}Expand description
Result of executing a SQL statement.
Variants§
SourceCreated
A source was registered (CREATE STREAM/TABLE).
Query
A query plan was produced (SELECT or CREATE … AS SELECT).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SqlResult
impl RefUnwindSafe for SqlResult
impl Send for SqlResult
impl Sync for SqlResult
impl Unpin for SqlResult
impl UnsafeUnpin for SqlResult
impl UnwindSafe for SqlResult
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