pub struct Capacity {
pub read_capacity_units: Option<f64>,
pub write_capacity_units: Option<f64>,
pub capacity_units: Option<f64>,
}Expand description
Capacity units consumed by an individual table or index.
Fields§
§read_capacity_units: Option<f64>The total read capacity units consumed.
write_capacity_units: Option<f64>The total write capacity units consumed.
capacity_units: Option<f64>The total capacity units consumed (read + write).
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Capacity
impl<'de> Deserialize<'de> for Capacity
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 Capacity
impl RefUnwindSafe for Capacity
impl Send for Capacity
impl Sync for Capacity
impl Unpin for Capacity
impl UnsafeUnpin for Capacity
impl UnwindSafe for Capacity
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