Struct Stats

Source
pub struct Stats {
Show 37 fields pub pid: i64, pub uptime: u64, pub server_time: i64, pub threads: u64, pub version: String, pub rusage_user: f64, pub rusage_system: f64, pub max_connections: u64, pub curr_connections: u64, pub total_connections: u64, pub rejected_connections: u64, pub cmd_get: u64, pub cmd_set: u64, pub cmd_flush: u64, pub cmd_touch: u64, pub cmd_meta: u64, pub get_hits: u64, pub get_misses: u64, pub get_expired: u64, pub get_flushed: u64, pub store_too_large: u64, pub store_no_memory: u64, pub delete_hits: u64, pub delete_misses: u64, pub incr_hits: u64, pub incr_misses: u64, pub decr_hits: u64, pub decr_misses: u64, pub touch_hits: u64, pub touch_misses: u64, pub bytes_read: u64, pub bytes_written: u64, pub bytes: u64, pub max_bytes: u64, pub curr_items: u64, pub total_items: u64, pub evictions: u64,
}

Fields§

§pid: i64§uptime: u64§server_time: i64§threads: u64§version: String§rusage_user: f64§rusage_system: f64§max_connections: u64§curr_connections: u64§total_connections: u64§rejected_connections: u64§cmd_get: u64§cmd_set: u64§cmd_flush: u64§cmd_touch: u64§cmd_meta: u64§get_hits: u64§get_misses: u64§get_expired: u64§get_flushed: u64§store_too_large: u64§store_no_memory: u64§delete_hits: u64§delete_misses: u64§incr_hits: u64§incr_misses: u64§decr_hits: u64§decr_misses: u64§touch_hits: u64§touch_misses: u64§bytes_read: u64§bytes_written: u64§bytes: u64§max_bytes: u64§curr_items: u64§total_items: u64§evictions: u64

Trait Implementations§

Source§

impl Clone for Stats

Source§

fn clone(&self) -> Stats

Returns a duplicate of the value. Read more
1.0.0 · Source§

const fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Stats

Source§

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

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

impl Default for Stats

Source§

fn default() -> Stats

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

impl PartialEq for Stats

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl TryFrom<&HashMap<String, String>> for Stats

Source§

type Error = MtopError

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

fn try_from(value: &HashMap<String, String>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl StructuralPartialEq for Stats

Auto Trait Implementations§

§

impl Freeze for Stats

§

impl RefUnwindSafe for Stats

§

impl Send for Stats

§

impl Sync for Stats

§

impl Unpin for Stats

§

impl UnwindSafe for Stats

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, dest: *mut u8)

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

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more