[][src]Struct pgx_pg_sys::ArrayBuildStateArr

#[repr(C)]pub struct ArrayBuildStateArr {
    pub mcontext: MemoryContext,
    pub data: *mut c_char,
    pub nullbitmap: *mut bits8,
    pub abytes: c_int,
    pub nbytes: c_int,
    pub aitems: c_int,
    pub nitems: c_int,
    pub ndims: c_int,
    pub dims: [c_int; 6],
    pub lbs: [c_int; 6],
    pub array_type: Oid,
    pub element_type: Oid,
    pub private_cxt: bool,
}

Fields

mcontext: MemoryContextdata: *mut c_charnullbitmap: *mut bits8abytes: c_intnbytes: c_intaitems: c_intnitems: c_intndims: c_intdims: [c_int; 6]lbs: [c_int; 6]array_type: Oidelement_type: Oidprivate_cxt: bool

Trait Implementations

impl Clone for ArrayBuildStateArr[src]

impl Copy for ArrayBuildStateArr[src]

impl Debug for ArrayBuildStateArr[src]

impl Default for ArrayBuildStateArr[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.