[][src]Struct pgx_pg_sys::StdRdOptions

#[repr(C)]pub struct StdRdOptions {
    pub vl_len_: int32,
    pub fillfactor: c_int,
    pub toast_tuple_target: c_int,
    pub autovacuum: AutoVacOpts,
    pub user_catalog_table: bool,
    pub parallel_workers: c_int,
    pub vacuum_index_cleanup: bool,
    pub vacuum_truncate: bool,
}

Fields

vl_len_: int32fillfactor: c_inttoast_tuple_target: c_intautovacuum: AutoVacOptsuser_catalog_table: boolparallel_workers: c_intvacuum_index_cleanup: boolvacuum_truncate: bool

Trait Implementations

impl Clone for StdRdOptions[src]

impl Copy for StdRdOptions[src]

impl Debug for StdRdOptions[src]

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