pub struct IoCostModelParams {
pub rbps: u64,
pub rseqiops: u64,
pub rrandiops: u64,
pub wbps: u64,
pub wseqiops: u64,
pub wrandiops: u64,
}
Fields§
§rbps: u64
§rseqiops: u64
§rrandiops: u64
§wbps: u64
§wseqiops: u64
§wrandiops: u64
Trait Implementations§
Source§impl Clone for IoCostModelParams
impl Clone for IoCostModelParams
Source§fn clone(&self) -> IoCostModelParams
fn clone(&self) -> IoCostModelParams
Returns a copy 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 IoCostModelParams
impl Debug for IoCostModelParams
Source§impl Default for IoCostModelParams
impl Default for IoCostModelParams
Source§fn default() -> IoCostModelParams
fn default() -> IoCostModelParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IoCostModelParamswhere
IoCostModelParams: Default,
impl<'de> Deserialize<'de> for IoCostModelParamswhere
IoCostModelParams: Default,
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 Display for IoCostModelParams
impl Display for IoCostModelParams
Source§impl Hash for IoCostModelParams
impl Hash for IoCostModelParams
Source§impl Mul<f64> for IoCostModelParams
impl Mul<f64> for IoCostModelParams
Source§impl PartialEq for IoCostModelParams
impl PartialEq for IoCostModelParams
Source§impl Serialize for IoCostModelParams
impl Serialize for IoCostModelParams
impl Eq for IoCostModelParams
impl StructuralPartialEq for IoCostModelParams
Auto Trait Implementations§
impl Freeze for IoCostModelParams
impl RefUnwindSafe for IoCostModelParams
impl Send for IoCostModelParams
impl Sync for IoCostModelParams
impl Unpin for IoCostModelParams
impl UnwindSafe for IoCostModelParams
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