Struct pgx_pg_sys::JoinCostWorkspace
source · [−]#[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: f64Trait Implementations
sourceimpl Clone for JoinCostWorkspace
impl Clone for JoinCostWorkspace
sourcefn clone(&self) -> JoinCostWorkspace
fn clone(&self) -> JoinCostWorkspace
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for JoinCostWorkspace
impl Debug for JoinCostWorkspace
sourceimpl Default for JoinCostWorkspace
impl Default for JoinCostWorkspace
sourcefn default() -> JoinCostWorkspace
fn default() -> JoinCostWorkspace
Returns the “default value” for a type. Read more
impl Copy for JoinCostWorkspace
Auto Trait Implementations
impl RefUnwindSafe for JoinCostWorkspace
impl Send for JoinCostWorkspace
impl Sync for JoinCostWorkspace
impl Unpin for JoinCostWorkspace
impl UnwindSafe for JoinCostWorkspace
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more