Struct pg_query::ast::SubPlan[][src]

pub struct SubPlan {
Show fields pub sub_link_type: Box<SubLinkType>, pub testexpr: Option<Box<Node>>, pub param_ids: Option<Vec<Node>>, pub plan_id: i32, pub plan_name: Option<String>, pub first_col_type: Oid, pub first_col_typmod: i32, pub first_col_collation: Oid, pub use_hash_table: bool, pub unknown_eq_false: bool, pub parallel_safe: bool, pub set_param: Option<Vec<Node>>, pub par_param: Option<Vec<Node>>, pub args: Option<Vec<Node>>, pub startup_cost: Cost, pub per_call_cost: Cost,
}

Fields

sub_link_type: Box<SubLinkType>testexpr: Option<Box<Node>>param_ids: Option<Vec<Node>>plan_id: i32plan_name: Option<String>first_col_type: Oidfirst_col_typmod: i32first_col_collation: Oiduse_hash_table: boolunknown_eq_false: boolparallel_safe: boolset_param: Option<Vec<Node>>par_param: Option<Vec<Node>>args: Option<Vec<Node>>startup_cost: Costper_call_cost: Cost

Trait Implementations

impl Debug for SubPlan[src]

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

Auto Trait Implementations

impl RefUnwindSafe for SubPlan

impl Send for SubPlan

impl Sync for SubPlan

impl Unpin for SubPlan

impl UnwindSafe for SubPlan

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