Struct pgx_pg_sys::BufferUsage[][src]

#[repr(C)]
pub struct BufferUsage { pub shared_blks_hit: c_long, pub shared_blks_read: c_long, pub shared_blks_dirtied: c_long, pub shared_blks_written: c_long, pub local_blks_hit: c_long, pub local_blks_read: c_long, pub local_blks_dirtied: c_long, pub local_blks_written: c_long, pub temp_blks_read: c_long, pub temp_blks_written: c_long, pub blk_read_time: instr_time, pub blk_write_time: instr_time, }

Fields

shared_blks_hit: c_longshared_blks_read: c_longshared_blks_dirtied: c_longshared_blks_written: c_longlocal_blks_hit: c_longlocal_blks_read: c_longlocal_blks_dirtied: c_longlocal_blks_written: c_longtemp_blks_read: c_longtemp_blks_written: c_longblk_read_time: instr_timeblk_write_time: instr_time

Trait Implementations

impl Clone for BufferUsage[src]

impl Copy for BufferUsage[src]

impl Debug for BufferUsage[src]

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