pub struct ConsumedCapacity {
pub table_name: String,
pub capacity_units: Option<f64>,
pub read_capacity_units: Option<f64>,
pub write_capacity_units: Option<f64>,
pub table: Option<Capacity>,
pub local_secondary_indexes: Option<Vec<(String, Capacity)>>,
pub global_secondary_indexes: Option<Vec<(String, Capacity)>>,
}Fields§
§table_name: String§capacity_units: Option<f64>§read_capacity_units: Option<f64>§write_capacity_units: Option<f64>§table: Option<Capacity>§local_secondary_indexes: Option<Vec<(String, Capacity)>>§global_secondary_indexes: Option<Vec<(String, Capacity)>>Trait Implementations§
Source§impl Clone for ConsumedCapacity
impl Clone for ConsumedCapacity
Source§fn clone(&self) -> ConsumedCapacity
fn clone(&self) -> ConsumedCapacity
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 moreAuto Trait Implementations§
impl Freeze for ConsumedCapacity
impl RefUnwindSafe for ConsumedCapacity
impl Send for ConsumedCapacity
impl Sync for ConsumedCapacity
impl Unpin for ConsumedCapacity
impl UnwindSafe for ConsumedCapacity
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