Struct sql_from_models_parser::ast::Explain
source · pub struct Explain {
pub analyze: bool,
pub verbose: bool,
pub statement: Box<Statement>,
}
Expand description
EXPLAIN
Fields§
§analyze: bool
Carry out the command and show actual run times and other statistics.
verbose: bool
§statement: Box<Statement>
A SQL query that specifies what to explain
Trait Implementations§
source§impl PartialEq for Explain
impl PartialEq for Explain
impl Eq for Explain
impl StructuralPartialEq for Explain
Auto Trait Implementations§
impl RefUnwindSafe for Explain
impl Send for Explain
impl Sync for Explain
impl Unpin for Explain
impl UnwindSafe for Explain
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