[][src]Struct pgx_pg_sys::JoinCostWorkspace

#[repr(C)]pub struct JoinCostWorkspace {
    pub startup_cost: Cost,
    pub total_cost: Cost,
    pub run_cost: Cost,
    pub inner_run_cost: Cost,
    pub inner_rescan_run_cost: Cost,
    pub outer_rows: f64,
    pub inner_rows: f64,
    pub outer_skip_rows: f64,
    pub inner_skip_rows: f64,
    pub numbuckets: c_int,
    pub numbatches: c_int,
    pub inner_rows_total: f64,
}

Fields

startup_cost: Costtotal_cost: Costrun_cost: Costinner_run_cost: Costinner_rescan_run_cost: Costouter_rows: f64inner_rows: f64outer_skip_rows: f64inner_skip_rows: f64numbuckets: c_intnumbatches: c_intinner_rows_total: f64

Trait Implementations

impl Clone for JoinCostWorkspace[src]

impl Copy for JoinCostWorkspace[src]

impl Debug for JoinCostWorkspace[src]

impl Default for JoinCostWorkspace[src]

Auto Trait Implementations

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> 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, 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.