pub struct IOStatistics {
pub non_io_request_time: Option<String>,
pub non_io_requests: Option<i64>,
pub read_hit_io_requests: Option<i64>,
pub read_io_ki_bytes: Option<i64>,
pub read_io_request_time: Option<String>,
pub read_io_requests: Option<i64>,
pub write_hit_io_requests: Option<i64>,
pub write_io_ki_bytes: Option<i64>,
pub write_io_request_time: Option<String>,
pub write_io_requests: Option<i64>,
}
Expand description
The properties of this type represent IO statistics.
Fields§
§non_io_request_time: Option<String>
The time that the resource is busy processing write requests.
non_io_requests: Option<i64>
Count of non IO requests.
read_hit_io_requests: Option<i64>
Count of read IO requests satisfied from memory.
read_io_ki_bytes: Option<i64>
Number of kibibytes read.
read_io_request_time: Option<String>
The time that the resource is busy processing read requests.
read_io_requests: Option<i64>
Count of read IO requests.
write_hit_io_requests: Option<i64>
Count of write IO requests coalesced into memory.
write_io_ki_bytes: Option<i64>
Number of kibibytes written.
write_io_request_time: Option<String>
The time that the resource is busy processing write requests.
write_io_requests: Option<i64>
Count of write IO requests.
Trait Implementations§
Source§impl Clone for IOStatistics
impl Clone for IOStatistics
Source§fn clone(&self) -> IOStatistics
fn clone(&self) -> IOStatistics
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for IOStatistics
impl Debug for IOStatistics
Source§impl Default for IOStatistics
impl Default for IOStatistics
Source§impl<'de> Deserialize<'de> for IOStatistics
impl<'de> Deserialize<'de> for IOStatistics
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 Metadata<'static> for IOStatistics
impl Metadata<'static> for IOStatistics
Source§const JSON_SCHEMA: &'static str = "IOStatistics.v1_0_1.json"
const JSON_SCHEMA: &'static str = "IOStatistics.v1_0_1.json"
Name of the json-schema file that describes the entity that implements this trait. Should
be only the file name, so that it can be resolved relative to the URL of the redfish
service, or the public Redfish schema index.
Auto Trait Implementations§
impl Freeze for IOStatistics
impl RefUnwindSafe for IOStatistics
impl Send for IOStatistics
impl Sync for IOStatistics
impl Unpin for IOStatistics
impl UnwindSafe for IOStatistics
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