[][src]Struct pgx_pg_sys::pg11_specific::TupleTableSlot

#[repr(C)]pub struct TupleTableSlot {
    pub type_: NodeTag,
    pub tts_isempty: bool,
    pub tts_shouldFree: bool,
    pub tts_shouldFreeMin: bool,
    pub tts_slow: bool,
    pub tts_tuple: HeapTuple,
    pub tts_tupleDescriptor: TupleDesc,
    pub tts_mcxt: MemoryContext,
    pub tts_buffer: Buffer,
    pub tts_nvalid: c_int,
    pub tts_values: *mut Datum,
    pub tts_isnull: *mut bool,
    pub tts_mintuple: MinimalTuple,
    pub tts_minhdr: HeapTupleData,
    pub tts_off: uint32,
    pub tts_fixedTupleDescriptor: bool,
}

Fields

type_: NodeTagtts_isempty: booltts_shouldFree: booltts_shouldFreeMin: booltts_slow: booltts_tuple: HeapTupletts_tupleDescriptor: TupleDesctts_mcxt: MemoryContexttts_buffer: Buffertts_nvalid: c_inttts_values: *mut Datumtts_isnull: *mut booltts_mintuple: MinimalTupletts_minhdr: HeapTupleDatatts_off: uint32tts_fixedTupleDescriptor: bool

Trait Implementations

impl Clone for TupleTableSlot[src]

impl Copy for TupleTableSlot[src]

impl Debug for TupleTableSlot[src]

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, 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.