pub enum SqlDispatchResult<E: EntityKind> {
Projection {
columns: Vec<String>,
projection: ProjectionResponse<E>,
},
Explain(String),
Describe(EntitySchemaDescription),
ShowIndexes(Vec<String>),
ShowColumns(Vec<EntityFieldDescription>),
ShowEntities(Vec<String>),
}Expand description
SqlDispatchResult
Unified SQL dispatch payload returned by shared SQL lane execution.
Variants§
Projection
Explain(String)
Describe(EntitySchemaDescription)
ShowIndexes(Vec<String>)
ShowColumns(Vec<EntityFieldDescription>)
ShowEntities(Vec<String>)
Trait Implementations§
Auto Trait Implementations§
impl<E> Freeze for SqlDispatchResult<E>
impl<E> RefUnwindSafe for SqlDispatchResult<E>
impl<E> Send for SqlDispatchResult<E>
impl<E> Sync for SqlDispatchResult<E>
impl<E> Unpin for SqlDispatchResult<E>
impl<E> UnsafeUnpin for SqlDispatchResult<E>
impl<E> UnwindSafe for SqlDispatchResult<E>
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