Struct git_odb::store::Metrics

source ·
pub struct Metrics {
    pub num_handles: usize,
    pub num_refreshes: usize,
    pub open_reachable_indices: usize,
    pub known_reachable_indices: usize,
    pub open_reachable_packs: usize,
    pub known_packs: usize,
    pub unused_slots: usize,
    pub unreachable_indices: usize,
    pub unreachable_packs: usize,
    pub loose_dbs: usize,
}
Expand description

A snapshot about resource usage.

Fields§

§num_handles: usize

The total amount of handles which can be used to access object information.

§num_refreshes: usize

The amount of refreshes performed to reconcile with the ODB state on disk.

§open_reachable_indices: usize

The amount of indices that are currently open and will be returned to handles.

§known_reachable_indices: usize

The amount of reachable, known indices, which aren’t opened yet.

§open_reachable_packs: usize

The amount of packs which are open in memory and will be returned to handles.

§known_packs: usize

The amount of packs that are reachable and will be returned to handles. They aren’t open yet.

§unused_slots: usize

The amount of slots which are empty.

Over time these will fill, but they can be emptied as files are removed from disk.

§unreachable_indices: usize

Unreachable indices are still using slots, but aren’t returned to new handles anymore unless they still happen to know their id.

This allows to keep files available while they are still potentially required for operations like pack generation, despite the file on disk being removed or changed.

§unreachable_packs: usize

Equivalent to unreachable_indices, but for mapped packed data files

§loose_dbs: usize

The amount of loose object databases currently available for object retrieval.

There may be more than one if ‘alternates’ are used.

Trait Implementations§

source§

impl Clone for Metrics

source§

fn clone(&self) -> Metrics

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 Metrics

source§

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

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

impl Default for Metrics

source§

fn default() -> Metrics

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

impl<'de> Deserialize<'de> for Metrics

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl PartialEq<Metrics> for Metrics

source§

fn eq(&self, other: &Metrics) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for Metrics

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Copy for Metrics

source§

impl Eq for Metrics

source§

impl StructuralEq for Metrics

source§

impl StructuralPartialEq for Metrics

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · 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 Twhere T: Clone,

§

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

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,