Struct qapi_qmp::BlockDeviceTimedStats
source · [−]pub struct BlockDeviceTimedStats {
pub min_wr_latency_ns: i32,
pub avg_wr_latency_ns: i32,
pub min_flush_latency_ns: i32,
pub avg_wr_queue_depth: f64,
pub avg_flush_latency_ns: i32,
pub max_wr_latency_ns: i32,
pub max_flush_latency_ns: i32,
pub avg_rd_queue_depth: f64,
pub interval_length: i32,
pub min_rd_latency_ns: i32,
pub avg_rd_latency_ns: i32,
pub max_rd_latency_ns: i32,
}Fields
min_wr_latency_ns: i32avg_wr_latency_ns: i32min_flush_latency_ns: i32avg_wr_queue_depth: f64avg_flush_latency_ns: i32max_wr_latency_ns: i32max_flush_latency_ns: i32avg_rd_queue_depth: f64interval_length: i32min_rd_latency_ns: i32avg_rd_latency_ns: i32max_rd_latency_ns: i32Trait Implementations
sourceimpl Clone for BlockDeviceTimedStats
impl Clone for BlockDeviceTimedStats
sourcefn clone(&self) -> BlockDeviceTimedStats
fn clone(&self) -> BlockDeviceTimedStats
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for BlockDeviceTimedStats
impl Debug for BlockDeviceTimedStats
sourceimpl<'de> Deserialize<'de> for BlockDeviceTimedStats
impl<'de> Deserialize<'de> for BlockDeviceTimedStats
sourcefn 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
sourceimpl Serialize for BlockDeviceTimedStats
impl Serialize for BlockDeviceTimedStats
Auto Trait Implementations
impl RefUnwindSafe for BlockDeviceTimedStats
impl Send for BlockDeviceTimedStats
impl Sync for BlockDeviceTimedStats
impl Unpin for BlockDeviceTimedStats
impl UnwindSafe for BlockDeviceTimedStats
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more