pub struct IoCostReport {
pub vrate: f64,
pub model: IoCostModelReport,
pub qos: IoCostQoSReport,
}Fields§
§vrate: f64§model: IoCostModelReport§qos: IoCostQoSReportImplementations§
Trait Implementations§
Source§impl AddAssign<&IoCostReport> for IoCostReport
impl AddAssign<&IoCostReport> for IoCostReport
Source§fn add_assign(&mut self, rhs: &IoCostReport)
fn add_assign(&mut self, rhs: &IoCostReport)
Performs the
+= operation. Read moreSource§impl Clone for IoCostReport
impl Clone for IoCostReport
Source§fn clone(&self) -> IoCostReport
fn clone(&self) -> IoCostReport
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 IoCostReport
impl Debug for IoCostReport
Source§impl Default for IoCostReport
impl Default for IoCostReport
Source§fn default() -> IoCostReport
fn default() -> IoCostReport
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IoCostReport
impl<'de> Deserialize<'de> for IoCostReport
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<T: Into<f64>> DivAssign<T> for IoCostReport
impl<T: Into<f64>> DivAssign<T> for IoCostReport
Source§fn div_assign(&mut self, rhs: T)
fn div_assign(&mut self, rhs: T)
Performs the
/= operation. Read moreAuto Trait Implementations§
impl Freeze for IoCostReport
impl RefUnwindSafe for IoCostReport
impl Send for IoCostReport
impl Sync for IoCostReport
impl Unpin for IoCostReport
impl UnwindSafe for IoCostReport
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more