Struct pgx_pg_sys::ExpandedArrayHeader[][src]

#[repr(C)]
pub struct ExpandedArrayHeader {
Show fields pub hdr: ExpandedObjectHeader, pub ea_magic: c_int, pub ndims: c_int, pub dims: *mut c_int, pub lbound: *mut c_int, pub element_type: Oid, pub typlen: int16, pub typbyval: bool, pub typalign: c_char, pub dvalues: *mut Datum, pub dnulls: *mut bool, pub dvalueslen: c_int, pub nelems: c_int, pub flat_size: Size, pub fvalue: *mut ArrayType, pub fstartptr: *mut c_char, pub fendptr: *mut c_char,
}

Fields

hdr: ExpandedObjectHeaderea_magic: c_intndims: c_intdims: *mut c_intlbound: *mut c_intelement_type: Oidtyplen: int16typbyval: booltypalign: c_chardvalues: *mut Datumdnulls: *mut booldvalueslen: c_intnelems: c_intflat_size: Sizefvalue: *mut ArrayTypefstartptr: *mut c_charfendptr: *mut c_char

Trait Implementations

impl Clone for ExpandedArrayHeader[src]

impl Copy for ExpandedArrayHeader[src]

impl Debug for ExpandedArrayHeader[src]

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