Struct __db_mpool_stat

Source
#[repr(C)]
pub struct __db_mpool_stat {
Show 44 fields pub st_gbytes: u_int32_t, pub st_bytes: u_int32_t, pub st_ncache: u_int32_t, pub st_max_ncache: u_int32_t, pub st_mmapsize: db_size_t, pub st_maxopenfd: i32, pub st_maxwrite: i32, pub st_maxwrite_sleep: db_timeout_t, pub st_pages: u_int32_t, pub st_map: u_int32_t, pub st_cache_hit: uintmax_t, pub st_cache_miss: uintmax_t, pub st_page_create: uintmax_t, pub st_page_in: uintmax_t, pub st_page_out: uintmax_t, pub st_ro_evict: uintmax_t, pub st_rw_evict: uintmax_t, pub st_page_trickle: uintmax_t, pub st_page_clean: u_int32_t, pub st_page_dirty: u_int32_t, pub st_hash_buckets: u_int32_t, pub st_hash_mutexes: u_int32_t, pub st_pagesize: u_int32_t, pub st_hash_searches: u_int32_t, pub st_hash_longest: u_int32_t, pub st_hash_examined: uintmax_t, pub st_hash_nowait: uintmax_t, pub st_hash_wait: uintmax_t, pub st_hash_max_nowait: uintmax_t, pub st_hash_max_wait: uintmax_t, pub st_region_nowait: uintmax_t, pub st_region_wait: uintmax_t, pub st_mvcc_frozen: uintmax_t, pub st_mvcc_thawed: uintmax_t, pub st_mvcc_freed: uintmax_t, pub st_alloc: uintmax_t, pub st_alloc_buckets: uintmax_t, pub st_alloc_max_buckets: uintmax_t, pub st_alloc_pages: uintmax_t, pub st_alloc_max_pages: uintmax_t, pub st_io_wait: uintmax_t, pub st_sync_interrupted: uintmax_t, pub st_regsize: roff_t, pub st_regmax: roff_t,
}

Fields§

§st_gbytes: u_int32_t§st_bytes: u_int32_t§st_ncache: u_int32_t§st_max_ncache: u_int32_t§st_mmapsize: db_size_t§st_maxopenfd: i32§st_maxwrite: i32§st_maxwrite_sleep: db_timeout_t§st_pages: u_int32_t§st_map: u_int32_t§st_cache_hit: uintmax_t§st_cache_miss: uintmax_t§st_page_create: uintmax_t§st_page_in: uintmax_t§st_page_out: uintmax_t§st_ro_evict: uintmax_t§st_rw_evict: uintmax_t§st_page_trickle: uintmax_t§st_page_clean: u_int32_t§st_page_dirty: u_int32_t§st_hash_buckets: u_int32_t§st_hash_mutexes: u_int32_t§st_pagesize: u_int32_t§st_hash_searches: u_int32_t§st_hash_longest: u_int32_t§st_hash_examined: uintmax_t§st_hash_nowait: uintmax_t§st_hash_wait: uintmax_t§st_hash_max_nowait: uintmax_t§st_hash_max_wait: uintmax_t§st_region_nowait: uintmax_t§st_region_wait: uintmax_t§st_mvcc_frozen: uintmax_t§st_mvcc_thawed: uintmax_t§st_mvcc_freed: uintmax_t§st_alloc: uintmax_t§st_alloc_buckets: uintmax_t§st_alloc_max_buckets: uintmax_t§st_alloc_pages: uintmax_t§st_alloc_max_pages: uintmax_t§st_io_wait: uintmax_t§st_sync_interrupted: uintmax_t§st_regsize: roff_t§st_regmax: roff_t

Trait Implementations§

Source§

impl Clone for __db_mpool_stat

Source§

fn clone(&self) -> __db_mpool_stat

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 __db_mpool_stat

Source§

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

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

impl Default for __db_mpool_stat

Source§

fn default() -> __db_mpool_stat

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

impl Copy for __db_mpool_stat

Auto Trait Implementations§

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

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

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 T
where T: Clone,

Source§

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 T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

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

Source§

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

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.