[][src]Struct pgx_pg_sys::LimitState

#[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: PlanStatelimitOffset: *mut ExprStatelimitCount: *mut ExprStatelimitOption: LimitOptionoffset: int64count: int64noCount: boollstate: LimitStateCondposition: int64subSlot: *mut TupleTableSloteqfunction: *mut ExprStatelast_slot: *mut TupleTableSlot

Trait Implementations

impl Clone for LimitState[src]

impl Copy for LimitState[src]

impl Debug for LimitState[src]

impl Default for LimitState[src]

impl Display for LimitState[src]

impl PgNode for LimitState[src]

type NodeType = LimitState

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.