pub struct MergesStats {Show 17 fields
pub total_auto_throttle: Option<String>,
pub total_docs: u32,
pub current_docs: u32,
pub total: u32,
pub total_stopped_time_in_millis: String,
pub total_throttled_time: Option<String>,
pub total_size: Option<String>,
pub total_throttled_time_in_millis: String,
pub total_size_in_bytes: u32,
pub current_size: Option<String>,
pub total_stopped_time: Option<String>,
pub total_time_in_millis: String,
pub unreferenced_file_cleanups_performed: Option<u32>,
pub current: u32,
pub current_size_in_bytes: u32,
pub total_time: Option<String>,
pub total_auto_throttle_in_bytes: u32,
}Fields§
§total_auto_throttle: Option<String>§total_docs: u32§current_docs: u32§total: u32§total_stopped_time_in_millis: String§total_throttled_time: Option<String>A duration. Units can be nanos, micros, ms (milliseconds), s (seconds), m (minutes), h (hours) and
d (days). Also accepts “0” without a unit and “-1” to indicate an unspecified value.
total_size: Option<String>§total_throttled_time_in_millis: String§total_size_in_bytes: u32§current_size: Option<String>§total_stopped_time: Option<String>A duration. Units can be nanos, micros, ms (milliseconds), s (seconds), m (minutes), h (hours) and
d (days). Also accepts “0” without a unit and “-1” to indicate an unspecified value.
total_time_in_millis: String§unreferenced_file_cleanups_performed: Option<u32>§current: u32§current_size_in_bytes: u32§total_time: Option<String>A duration. Units can be nanos, micros, ms (milliseconds), s (seconds), m (minutes), h (hours) and
d (days). Also accepts “0” without a unit and “-1” to indicate an unspecified value.
total_auto_throttle_in_bytes: u32Implementations§
Source§impl MergesStats
impl MergesStats
Trait Implementations§
Source§impl Clone for MergesStats
impl Clone for MergesStats
Source§fn clone(&self) -> MergesStats
fn clone(&self) -> MergesStats
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MergesStats
impl Debug for MergesStats
Source§impl Default for MergesStats
impl Default for MergesStats
Source§fn default() -> MergesStats
fn default() -> MergesStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MergesStats
impl<'de> Deserialize<'de> for MergesStats
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
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 for MergesStats
impl PartialEq for MergesStats
Source§fn eq(&self, other: &MergesStats) -> bool
fn eq(&self, other: &MergesStats) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for MergesStats
impl Serialize for MergesStats
impl StructuralPartialEq for MergesStats
Auto Trait Implementations§
impl Freeze for MergesStats
impl RefUnwindSafe for MergesStats
impl Send for MergesStats
impl Sync for MergesStats
impl Unpin for MergesStats
impl UnsafeUnpin for MergesStats
impl UnwindSafe for MergesStats
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more