Struct pgrx_pg_sys::LimitState
source · #[repr(C)]pub struct LimitState {
pub ps: PlanState,
pub limitOffset: *mut ExprState,
pub limitCount: *mut ExprState,
pub limitOption: LimitOption,
pub offset: int64,
pub count: int64,
pub noCount: bool,
pub lstate: LimitStateCond,
pub position: int64,
pub subSlot: *mut TupleTableSlot,
pub eqfunction: *mut ExprState,
pub last_slot: *mut TupleTableSlot,
}
Fields§
§ps: PlanState
§limitOffset: *mut ExprState
§limitCount: *mut ExprState
§limitOption: LimitOption
§offset: int64
§count: int64
§noCount: bool
§lstate: LimitStateCond
§position: int64
§subSlot: *mut TupleTableSlot
§eqfunction: *mut ExprState
§last_slot: *mut TupleTableSlot
Trait Implementations§
source§impl Clone for LimitState
impl Clone for LimitState
source§fn clone(&self) -> LimitState
fn clone(&self) -> LimitState
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 LimitState
impl Debug for LimitState
source§impl Default for LimitState
impl Default for LimitState
source§impl Display for LimitState
impl Display for LimitState
source§impl PgNode for LimitState
impl PgNode for LimitState
source§fn display_node(&self) -> String
fn display_node(&self) -> String
Format this node Read more
impl Copy for LimitState
Auto Trait Implementations§
impl Freeze for LimitState
impl RefUnwindSafe for LimitState
impl !Send for LimitState
impl !Sync for LimitState
impl Unpin for LimitState
impl UnwindSafe for LimitState
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