[][src]Struct pgx_pg_sys::Instrumentation

#[repr(C)]pub struct Instrumentation {
    pub need_timer: bool,
    pub need_bufusage: bool,
    pub need_walusage: bool,
    pub running: bool,
    pub starttime: instr_time,
    pub counter: instr_time,
    pub firsttuple: f64,
    pub tuplecount: f64,
    pub bufusage_start: BufferUsage,
    pub walusage_start: WalUsage,
    pub startup: f64,
    pub total: f64,
    pub ntuples: f64,
    pub ntuples2: f64,
    pub nloops: f64,
    pub nfiltered1: f64,
    pub nfiltered2: f64,
    pub bufusage: BufferUsage,
    pub walusage: WalUsage,
}

Fields

need_timer: boolneed_bufusage: boolneed_walusage: boolrunning: boolstarttime: instr_timecounter: instr_timefirsttuple: f64tuplecount: f64bufusage_start: BufferUsagewalusage_start: WalUsagestartup: f64total: f64ntuples: f64ntuples2: f64nloops: f64nfiltered1: f64nfiltered2: f64bufusage: BufferUsagewalusage: WalUsage

Trait Implementations

impl Clone for Instrumentation[src]

impl Copy for Instrumentation[src]

impl Debug for Instrumentation[src]

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