#[repr(C)]
pub struct FormData_pg_class {
Show 30 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: Oid§relname: NameData§relnamespace: Oid§reltype: Oid§reloftype: Oid§relowner: Oid§relam: Oid§relfilenode: Oid§reltablespace: Oid§relpages: int32§reltuples: float4§relallvisible: int32§reltoastrelid: Oid§relhasindex: bool§relisshared: bool§relpersistence: c_char§relkind: c_char§relnatts: int16§relchecks: int16§relhasrules: bool§relhastriggers: bool§relhassubclass: bool§relrowsecurity: bool§relforcerowsecurity: bool§relispopulated: bool§relreplident: c_char§relispartition: bool§relrewrite: Oid§relfrozenxid: TransactionId§relminmxid: TransactionId

Trait Implementations§

source§

impl Clone for FormData_pg_class

source§

fn clone(&self) -> FormData_pg_class

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for FormData_pg_class

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for FormData_pg_class

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Copy for FormData_pg_class

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.