pub struct Dimension {
pub dimension_type: DimensionType,
pub volume: Decimal,
}Expand description
The volume that has been consumed for a specific dimension during a charging period.
Fields§
§dimension_type: DimensionType§volume: DecimalVolume of the dimension consumed, measured according to the dimension type.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Dimension
impl RefUnwindSafe for Dimension
impl Send for Dimension
impl Sync for Dimension
impl Unpin for Dimension
impl UnwindSafe for Dimension
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