Struct pgx_pg_sys::FormData_pg_class[][src]

#[repr(C)]
pub struct FormData_pg_class {
Show fields pub oid: Oid, pub relname: NameData, pub relnamespace: Oid, pub reltype: Oid, pub reloftype: Oid, pub relowner: Oid, pub relam: Oid, pub relfilenode: Oid, pub reltablespace: Oid, pub relpages: int32, pub reltuples: float4, pub relallvisible: int32, pub reltoastrelid: Oid, pub relhasindex: bool, pub relisshared: bool, pub relpersistence: c_char, pub relkind: c_char, pub relnatts: int16, pub relchecks: int16, pub relhasrules: bool, pub relhastriggers: bool, pub relhassubclass: bool, pub relrowsecurity: bool, pub relforcerowsecurity: bool, pub relispopulated: bool, pub relreplident: c_char, pub relispartition: bool, pub relrewrite: Oid, pub relfrozenxid: TransactionId, pub relminmxid: TransactionId,
}

Fields

oid: Oidrelname: NameDatarelnamespace: Oidreltype: Oidreloftype: Oidrelowner: Oidrelam: Oidrelfilenode: Oidreltablespace: Oidrelpages: int32reltuples: float4relallvisible: int32reltoastrelid: Oidrelhasindex: boolrelisshared: boolrelpersistence: c_charrelkind: c_charrelnatts: int16relchecks: int16relhasrules: boolrelhastriggers: boolrelhassubclass: boolrelrowsecurity: boolrelforcerowsecurity: boolrelispopulated: boolrelreplident: c_charrelispartition: boolrelrewrite: Oidrelfrozenxid: TransactionIdrelminmxid: TransactionId

Trait Implementations

impl Clone for FormData_pg_class[src]

impl Copy for FormData_pg_class[src]

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