Struct pgx_pg_sys::SampleScanState[][src]

#[repr(C)]
pub struct SampleScanState { pub ss: ScanState, pub args: *mut List, pub repeatable: *mut ExprState, pub tsmroutine: *mut TsmRoutine, pub tsm_state: *mut c_void, pub use_bulkread: bool, pub use_pagemode: bool, pub begun: bool, pub seed: uint32, pub donetuples: int64, pub haveblock: bool, pub done: bool, }

Fields

ss: ScanStateargs: *mut Listrepeatable: *mut ExprStatetsmroutine: *mut TsmRoutinetsm_state: *mut c_voiduse_bulkread: booluse_pagemode: boolbegun: boolseed: uint32donetuples: int64haveblock: booldone: bool

Trait Implementations

impl Clone for SampleScanState[src]

impl Copy for SampleScanState[src]

impl Debug for SampleScanState[src]

impl Default for SampleScanState[src]

impl Display for SampleScanState[src]

impl PgNode for SampleScanState[src]

type NodeType = SampleScanState

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.