pub struct CapacityDetail {
pub capacity_units: f64,
pub read_capacity_units: Option<f64>,
pub write_capacity_units: Option<f64>,
}Expand description
Per-resource capacity detail.
Fields§
§capacity_units: f64§read_capacity_units: Option<f64>§write_capacity_units: Option<f64>Trait Implementations§
Source§impl Clone for CapacityDetail
impl Clone for CapacityDetail
Source§fn clone(&self) -> CapacityDetail
fn clone(&self) -> CapacityDetail
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CapacityDetail
impl Debug for CapacityDetail
Source§impl Default for CapacityDetail
impl Default for CapacityDetail
Source§fn default() -> CapacityDetail
fn default() -> CapacityDetail
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CapacityDetail
impl<'de> Deserialize<'de> for CapacityDetail
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
Auto Trait Implementations§
impl Freeze for CapacityDetail
impl RefUnwindSafe for CapacityDetail
impl Send for CapacityDetail
impl Sync for CapacityDetail
impl Unpin for CapacityDetail
impl UnsafeUnpin for CapacityDetail
impl UnwindSafe for CapacityDetail
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