pub struct ThroughputAnalytics {
pub period: String,
pub total_operations: u64,
pub operations_per_second: f64,
pub by_operation: HashMap<String, u64>,
}Expand description
Throughput analytics response
Fields§
§period: String§total_operations: u64§operations_per_second: f64§by_operation: HashMap<String, u64>Trait Implementations§
Source§impl Clone for ThroughputAnalytics
impl Clone for ThroughputAnalytics
Source§fn clone(&self) -> ThroughputAnalytics
fn clone(&self) -> ThroughputAnalytics
Returns a duplicate of the value. Read more
1.0.0 · 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 ThroughputAnalytics
impl Debug for ThroughputAnalytics
Source§impl<'de> Deserialize<'de> for ThroughputAnalytics
impl<'de> Deserialize<'de> for ThroughputAnalytics
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
Auto Trait Implementations§
impl Freeze for ThroughputAnalytics
impl RefUnwindSafe for ThroughputAnalytics
impl Send for ThroughputAnalytics
impl Sync for ThroughputAnalytics
impl Unpin for ThroughputAnalytics
impl UnsafeUnpin for ThroughputAnalytics
impl UnwindSafe for ThroughputAnalytics
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