pub enum SqlStatementRoute {
Query {
entity: String,
},
Explain {
entity: String,
},
}Expand description
SqlStatementRoute
Canonical SQL statement routing metadata derived from reduced SQL parser output.
Carries surface kind (Query / Explain) and canonical parsed entity identifier.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for SqlStatementRoute
impl Clone for SqlStatementRoute
Source§fn clone(&self) -> SqlStatementRoute
fn clone(&self) -> SqlStatementRoute
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SqlStatementRoute
impl Debug for SqlStatementRoute
Source§impl PartialEq for SqlStatementRoute
impl PartialEq for SqlStatementRoute
impl Eq for SqlStatementRoute
impl StructuralPartialEq for SqlStatementRoute
Auto Trait Implementations§
impl Freeze for SqlStatementRoute
impl RefUnwindSafe for SqlStatementRoute
impl Send for SqlStatementRoute
impl Sync for SqlStatementRoute
impl Unpin for SqlStatementRoute
impl UnsafeUnpin for SqlStatementRoute
impl UnwindSafe for SqlStatementRoute
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