pub struct Plan {Show 46 fields
pub actual_cost: f64,
pub actual_duration: f64,
pub actual_loops: u64,
pub actual_rows: u64,
pub actual_startup_time: f64,
pub actual_total_time: f64,
pub alias: String,
pub costliest: bool,
pub cte_name: String,
pub filter: String,
pub group_key: Vec<String>,
pub hash_condition: String,
pub heap_fetches: u64,
pub index_condition: String,
pub index_name: String,
pub io_read_time: f64,
pub io_write_time: f64,
pub join_type: String,
pub largest: bool,
pub local_dirtied_blocks: u64,
pub local_hit_blocks: u64,
pub local_read_blocks: u64,
pub local_written_blocks: u64,
pub node_type: String,
pub output: Vec<String>,
pub parent_relationship: String,
pub planner_row_estimate_direction: String,
pub planner_row_estimate_factor: f64,
pub plan_rows: u64,
pub plan_width: u64,
pub relation_name: String,
pub rows_removed_by_filter: u64,
pub rows_removed_by_index_recheck: u64,
pub scan_direction: String,
pub schema: String,
pub shared_dirtied_blocks: u64,
pub shared_hit_blocks: u64,
pub shared_read_blocks: u64,
pub shared_written_blocks: u64,
pub slowest: bool,
pub startup_cost: f64,
pub strategy: String,
pub temp_read_blocks: u64,
pub temp_written_blocks: u64,
pub total_cost: f64,
pub plans: Vec<Plan>,
}Expand description
The Plan struct
Fields§
§actual_cost: f64§actual_duration: f64§actual_loops: u64§actual_rows: u64§actual_startup_time: f64§actual_total_time: f64§alias: String§costliest: bool§cte_name: String§filter: String§group_key: Vec<String>§hash_condition: String§heap_fetches: u64§index_condition: String§index_name: String§io_read_time: f64§io_write_time: f64§join_type: String§largest: bool§local_dirtied_blocks: u64§local_hit_blocks: u64§local_read_blocks: u64§local_written_blocks: u64§node_type: String§output: Vec<String>§parent_relationship: String§planner_row_estimate_direction: String§planner_row_estimate_factor: f64§plan_rows: u64§plan_width: u64§relation_name: String§rows_removed_by_filter: u64§rows_removed_by_index_recheck: u64§scan_direction: String§schema: String§slowest: bool§startup_cost: f64§strategy: String§temp_read_blocks: u64§temp_written_blocks: u64§total_cost: f64§plans: Vec<Plan>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Plan
impl<'de> Deserialize<'de> for Plan
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Plan
impl RefUnwindSafe for Plan
impl Send for Plan
impl Sync for Plan
impl Unpin for Plan
impl UnwindSafe for Plan
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