pub struct Rates {
pub consistency_check_rate_percent: Option<i64>,
pub rebuild_rate_percent: Option<i64>,
pub transformation_rate_percent: Option<i64>,
}
Expand description
This type describes the various controller rates used for processes such as volume rebuild or consistency checks.
Fields§
§consistency_check_rate_percent: Option<i64>
The percentage of controller resources used for performing a data consistency check on volumes.
rebuild_rate_percent: Option<i64>
The percentage of controller resources used for rebuilding/repairing volumes.
transformation_rate_percent: Option<i64>
The percentage of controller resources used for transforming volumes from one configuration to another.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Rates
impl<'de> Deserialize<'de> for Rates
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 Rates
impl Metadata<'static> for Rates
Source§const JSON_SCHEMA: &'static str = "Storage.v1_13_0.json"
const JSON_SCHEMA: &'static str = "Storage.v1_13_0.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 Rates
impl RefUnwindSafe for Rates
impl Send for Rates
impl Sync for Rates
impl Unpin for Rates
impl UnwindSafe for Rates
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