[][src]Struct rustcmdpev::structure::plan::plan::Plan

pub struct Plan {
    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>,
}

The Plan struct

Fields

actual_cost: f64actual_duration: f64actual_loops: u64actual_rows: u64actual_startup_time: f64actual_total_time: f64alias: Stringcostliest: boolcte_name: Stringfilter: Stringgroup_key: Vec<String>hash_condition: Stringheap_fetches: u64index_condition: Stringindex_name: Stringio_read_time: f64io_write_time: f64join_type: Stringlargest: boollocal_dirtied_blocks: u64local_hit_blocks: u64local_read_blocks: u64local_written_blocks: u64node_type: Stringoutput: Vec<String>parent_relationship: Stringplanner_row_estimate_direction: Stringplanner_row_estimate_factor: f64plan_rows: u64plan_width: u64relation_name: Stringrows_removed_by_filter: u64rows_removed_by_index_recheck: u64scan_direction: Stringschema: Stringshared_dirtied_blocks: u64shared_hit_blocks: u64shared_read_blocks: u64shared_written_blocks: u64slowest: boolstartup_cost: f64strategy: Stringtemp_read_blocks: u64temp_written_blocks: u64total_cost: f64plans: Vec<Plan>

Trait Implementations

impl Clone for Plan[src]

impl Debug for Plan[src]

impl Default for Plan[src]

impl<'de> Deserialize<'de> for Plan[src]

impl Display for Plan[src]

impl Serialize for Plan[src]

Auto Trait Implementations

impl RefUnwindSafe for Plan

impl Send for Plan

impl Sync for Plan

impl Unpin for Plan

impl UnwindSafe for Plan

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.