Struct mentat::query::QueryPlanStep [] [src]

pub struct QueryPlanStep {
    pub select_id: i32,
    pub order: i32,
    pub from: i32,
    pub detail: String,
}

A single row in the output of SQLite's EXPLAIN QUERY PLAN. See https://www.sqlite.org/eqp.html for an explanation of each field.

Fields

Trait Implementations

Auto Trait Implementations

impl Send for QueryPlanStep

impl Sync for QueryPlanStep