pub struct ParseSqlOutput {
pub statements: Vec<Statement>,
pub parser_fallback_used: bool,
}Expand description
Result of parsing SQL with fallback metadata.
Fields§
§statements: Vec<Statement>§parser_fallback_used: boolAuto Trait Implementations§
impl Freeze for ParseSqlOutput
impl RefUnwindSafe for ParseSqlOutput
impl Send for ParseSqlOutput
impl Sync for ParseSqlOutput
impl Unpin for ParseSqlOutput
impl UnsafeUnpin for ParseSqlOutput
impl UnwindSafe for ParseSqlOutput
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