pub struct CapacityInfoUpdate {
pub allocated_bytes: Option<Int64>,
pub guaranteed_bytes: Option<Int64>,
pub provisioned_bytes: Option<Int64>,
}Expand description
Update struct corresponding to CapacityInfo
Fields§
§allocated_bytes: Option<Int64>§guaranteed_bytes: Option<Int64>§provisioned_bytes: Option<Int64>Implementations§
Source§impl CapacityInfoUpdate
impl CapacityInfoUpdate
pub fn builder() -> Self
pub const fn build(self) -> Self
pub fn with_allocated_bytes(self, v: Int64) -> Self
pub fn with_guaranteed_bytes(self, v: Int64) -> Self
pub fn with_provisioned_bytes(self, v: Int64) -> Self
Trait Implementations§
Source§impl Debug for CapacityInfoUpdate
impl Debug for CapacityInfoUpdate
Source§impl Default for CapacityInfoUpdate
impl Default for CapacityInfoUpdate
Source§fn default() -> CapacityInfoUpdate
fn default() -> CapacityInfoUpdate
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CapacityInfoUpdate
impl RefUnwindSafe for CapacityInfoUpdate
impl Send for CapacityInfoUpdate
impl Sync for CapacityInfoUpdate
impl Unpin for CapacityInfoUpdate
impl UnsafeUnpin for CapacityInfoUpdate
impl UnwindSafe for CapacityInfoUpdate
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