#[repr(C)]pub struct SubPlan {Show 17 fields
pub xpr: Expr,
pub subLinkType: Type,
pub testexpr: *mut Node,
pub paramIds: *mut List,
pub plan_id: c_int,
pub plan_name: *mut c_char,
pub firstColType: Oid,
pub firstColTypmod: int32,
pub firstColCollation: Oid,
pub useHashTable: bool,
pub unknownEqFalse: bool,
pub parallel_safe: bool,
pub setParam: *mut List,
pub parParam: *mut List,
pub args: *mut List,
pub startup_cost: Cost,
pub per_call_cost: Cost,
}
Fields§
§xpr: Expr
§subLinkType: Type
§testexpr: *mut Node
§paramIds: *mut List
§plan_id: c_int
§plan_name: *mut c_char
§firstColType: Oid
§firstColTypmod: int32
§firstColCollation: Oid
§useHashTable: bool
§unknownEqFalse: bool
§parallel_safe: bool
§setParam: *mut List
§parParam: *mut List
§args: *mut List
§startup_cost: Cost
§per_call_cost: Cost
Trait Implementations§
impl Copy for SubPlan
Auto Trait Implementations§
impl Freeze for SubPlan
impl RefUnwindSafe for SubPlan
impl !Send for SubPlan
impl !Sync for SubPlan
impl Unpin for SubPlan
impl UnwindSafe for SubPlan
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more