[][src]Struct postgres_parser::sys::AlternativeSubPlan

#[repr(C)]pub struct AlternativeSubPlan {
    pub xpr: Expr,
    pub subplans: *mut List,
}

AlternativeSubPlan expression node for a choice among SubPlans

The subplans are given as a List so that the node definition need not change if there's ever more than two alternatives. For the moment, though, there are always exactly two; and the first one is the faststart plan.

Fields

xpr: Exprsubplans: *mut List

Trait Implementations

impl Debug for AlternativeSubPlan[src]

impl Default for AlternativeSubPlan[src]

impl Eq for AlternativeSubPlan[src]

impl Hash for AlternativeSubPlan[src]

impl PartialEq<AlternativeSubPlan> for AlternativeSubPlan[src]

impl StructuralEq for AlternativeSubPlan[src]

impl StructuralPartialEq for AlternativeSubPlan[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, 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.