[][src]Struct pgx_pg_sys::TupleTableSlot

#[repr(C)]pub struct TupleTableSlot {
    pub type_: NodeTag,
    pub tts_flags: uint16,
    pub tts_nvalid: AttrNumber,
    pub tts_ops: *const TupleTableSlotOps,
    pub tts_tupleDescriptor: TupleDesc,
    pub tts_values: *mut Datum,
    pub tts_isnull: *mut bool,
    pub tts_mcxt: MemoryContext,
    pub tts_tid: ItemPointerData,
    pub tts_tableOid: Oid,
}

Fields

type_: NodeTagtts_flags: uint16tts_nvalid: AttrNumbertts_ops: *const TupleTableSlotOpstts_tupleDescriptor: TupleDesctts_values: *mut Datumtts_isnull: *mut booltts_mcxt: MemoryContexttts_tid: ItemPointerDatatts_tableOid: Oid

Trait Implementations

impl Clone for TupleTableSlot[src]

impl Copy for TupleTableSlot[src]

impl Debug for TupleTableSlot[src]

impl Default for TupleTableSlot[src]

impl Display for TupleTableSlot[src]

impl PgNode for TupleTableSlot[src]

type NodeType = TupleTableSlot

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.