Struct __db_lock_stat

Source
#[repr(C)]
pub struct __db_lock_stat {
Show 49 fields pub st_id: u_int32_t, pub st_cur_maxid: u_int32_t, pub st_initlocks: u_int32_t, pub st_initlockers: u_int32_t, pub st_initobjects: u_int32_t, pub st_locks: u_int32_t, pub st_lockers: u_int32_t, pub st_objects: u_int32_t, pub st_maxlocks: u_int32_t, pub st_maxlockers: u_int32_t, pub st_maxobjects: u_int32_t, pub st_partitions: u_int32_t, pub st_tablesize: u_int32_t, pub st_nmodes: i32, pub st_nlockers: u_int32_t, pub st_nlocks: u_int32_t, pub st_maxnlocks: u_int32_t, pub st_maxhlocks: u_int32_t, pub st_locksteals: uintmax_t, pub st_maxlsteals: uintmax_t, pub st_maxnlockers: u_int32_t, pub st_nobjects: u_int32_t, pub st_maxnobjects: u_int32_t, pub st_maxhobjects: u_int32_t, pub st_objectsteals: uintmax_t, pub st_maxosteals: uintmax_t, pub st_nrequests: uintmax_t, pub st_nreleases: uintmax_t, pub st_nupgrade: uintmax_t, pub st_ndowngrade: uintmax_t, pub st_lock_wait: uintmax_t, pub st_lock_nowait: uintmax_t, pub st_ndeadlocks: uintmax_t, pub st_locktimeout: db_timeout_t, pub st_nlocktimeouts: uintmax_t, pub st_txntimeout: db_timeout_t, pub st_ntxntimeouts: uintmax_t, pub st_part_wait: uintmax_t, pub st_part_nowait: uintmax_t, pub st_part_max_wait: uintmax_t, pub st_part_max_nowait: uintmax_t, pub st_objs_wait: uintmax_t, pub st_objs_nowait: uintmax_t, pub st_lockers_wait: uintmax_t, pub st_lockers_nowait: uintmax_t, pub st_region_wait: uintmax_t, pub st_region_nowait: uintmax_t, pub st_hash_len: u_int32_t, pub st_regsize: roff_t,
}

Fields§

§st_id: u_int32_t§st_cur_maxid: u_int32_t§st_initlocks: u_int32_t§st_initlockers: u_int32_t§st_initobjects: u_int32_t§st_locks: u_int32_t§st_lockers: u_int32_t§st_objects: u_int32_t§st_maxlocks: u_int32_t§st_maxlockers: u_int32_t§st_maxobjects: u_int32_t§st_partitions: u_int32_t§st_tablesize: u_int32_t§st_nmodes: i32§st_nlockers: u_int32_t§st_nlocks: u_int32_t§st_maxnlocks: u_int32_t§st_maxhlocks: u_int32_t§st_locksteals: uintmax_t§st_maxlsteals: uintmax_t§st_maxnlockers: u_int32_t§st_nobjects: u_int32_t§st_maxnobjects: u_int32_t§st_maxhobjects: u_int32_t§st_objectsteals: uintmax_t§st_maxosteals: uintmax_t§st_nrequests: uintmax_t§st_nreleases: uintmax_t§st_nupgrade: uintmax_t§st_ndowngrade: uintmax_t§st_lock_wait: uintmax_t§st_lock_nowait: uintmax_t§st_ndeadlocks: uintmax_t§st_locktimeout: db_timeout_t§st_nlocktimeouts: uintmax_t§st_txntimeout: db_timeout_t§st_ntxntimeouts: uintmax_t§st_part_wait: uintmax_t§st_part_nowait: uintmax_t§st_part_max_wait: uintmax_t§st_part_max_nowait: uintmax_t§st_objs_wait: uintmax_t§st_objs_nowait: uintmax_t§st_lockers_wait: uintmax_t§st_lockers_nowait: uintmax_t§st_region_wait: uintmax_t§st_region_nowait: uintmax_t§st_hash_len: u_int32_t§st_regsize: roff_t

Trait Implementations§

Source§

impl Clone for __db_lock_stat

Source§

fn clone(&self) -> __db_lock_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_lock_stat

Source§

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

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

impl Default for __db_lock_stat

Source§

fn default() -> __db_lock_stat

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

impl Copy for __db_lock_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.