pub struct BillingModeSummary {
pub billing_mode: Option<BillingMode>,
pub last_update_to_pay_per_request_date_time: Option<f64>,
}Expand description
Summary of the billing mode for a table.
Fields§
§billing_mode: Option<BillingMode>The billing mode currently in effect.
last_update_to_pay_per_request_date_time: Option<f64>The date and time (epoch seconds) when the billing mode was last set.
Trait Implementations§
Source§impl Clone for BillingModeSummary
impl Clone for BillingModeSummary
Source§fn clone(&self) -> BillingModeSummary
fn clone(&self) -> BillingModeSummary
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 moreSource§impl Debug for BillingModeSummary
impl Debug for BillingModeSummary
Source§impl Default for BillingModeSummary
impl Default for BillingModeSummary
Source§fn default() -> BillingModeSummary
fn default() -> BillingModeSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BillingModeSummary
impl<'de> Deserialize<'de> for BillingModeSummary
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 BillingModeSummary
impl RefUnwindSafe for BillingModeSummary
impl Send for BillingModeSummary
impl Sync for BillingModeSummary
impl Unpin for BillingModeSummary
impl UnsafeUnpin for BillingModeSummary
impl UnwindSafe for BillingModeSummary
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