#[repr(C)]pub struct PlannedStmt {Show 23 fields
pub type_: NodeTag,
pub commandType: Type,
pub queryId: uint64,
pub hasReturning: bool,
pub hasModifyingCTE: bool,
pub canSetTag: bool,
pub transientPlan: bool,
pub dependsOnRole: bool,
pub parallelModeNeeded: bool,
pub jitFlags: c_int,
pub planTree: *mut Plan,
pub rtable: *mut List,
pub resultRelations: *mut List,
pub appendRelations: *mut List,
pub subplans: *mut List,
pub rewindPlanIDs: *mut Bitmapset,
pub rowMarks: *mut List,
pub relationOids: *mut List,
pub invalItems: *mut List,
pub paramExecTypes: *mut List,
pub utilityStmt: *mut Node,
pub stmt_location: c_int,
pub stmt_len: c_int,
}
Fields§
§type_: NodeTag
§commandType: Type
§queryId: uint64
§hasReturning: bool
§hasModifyingCTE: bool
§canSetTag: bool
§transientPlan: bool
§dependsOnRole: bool
§parallelModeNeeded: bool
§jitFlags: c_int
§planTree: *mut Plan
§rtable: *mut List
§resultRelations: *mut List
§appendRelations: *mut List
§subplans: *mut List
§rewindPlanIDs: *mut Bitmapset
§rowMarks: *mut List
§relationOids: *mut List
§invalItems: *mut List
§paramExecTypes: *mut List
§utilityStmt: *mut Node
§stmt_location: c_int
§stmt_len: c_int
Trait Implementations§
Source§impl Clone for PlannedStmt
impl Clone for PlannedStmt
Source§fn clone(&self) -> PlannedStmt
fn clone(&self) -> PlannedStmt
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PlannedStmt
impl Debug for PlannedStmt
Source§impl Default for PlannedStmt
impl Default for PlannedStmt
Source§impl Display for PlannedStmt
impl Display for PlannedStmt
Source§impl PgNode for PlannedStmt
impl PgNode for PlannedStmt
Source§fn display_node(&self) -> String
fn display_node(&self) -> String
Format this node Read more
impl Copy for PlannedStmt
Auto Trait Implementations§
impl Freeze for PlannedStmt
impl RefUnwindSafe for PlannedStmt
impl !Send for PlannedStmt
impl !Sync for PlannedStmt
impl Unpin for PlannedStmt
impl UnwindSafe for PlannedStmt
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