Struct pgx_pg_sys::Plan[][src]

#[repr(C)]
pub struct Plan {
Show fields pub type_: NodeTag, pub startup_cost: Cost, pub total_cost: Cost, pub plan_rows: f64, pub plan_width: c_int, pub parallel_aware: bool, pub parallel_safe: bool, pub plan_node_id: c_int, pub targetlist: *mut List, pub qual: *mut List, pub lefttree: *mut Plan, pub righttree: *mut Plan, pub initPlan: *mut List, pub extParam: *mut Bitmapset, pub allParam: *mut Bitmapset,
}

Fields

type_: NodeTagstartup_cost: Costtotal_cost: Costplan_rows: f64plan_width: c_intparallel_aware: boolparallel_safe: boolplan_node_id: c_inttargetlist: *mut Listqual: *mut Listlefttree: *mut Planrighttree: *mut PlaninitPlan: *mut ListextParam: *mut BitmapsetallParam: *mut Bitmapset

Trait Implementations

impl Clone for Plan[src]

impl Copy for Plan[src]

impl Debug for Plan[src]

impl Default for Plan[src]

impl Display for Plan[src]

impl PgNode for Plan[src]

type NodeType = Plan

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