pub struct OnDemandThroughput {
pub max_read_request_units: Option<i64>,
pub max_write_request_units: Option<i64>,
}Expand description
On-demand (PAY_PER_REQUEST) throughput ceilings (stored but not enforced).
Fields§
§max_read_request_units: Option<i64>§max_write_request_units: Option<i64>Trait Implementations§
Source§impl Clone for OnDemandThroughput
impl Clone for OnDemandThroughput
Source§fn clone(&self) -> OnDemandThroughput
fn clone(&self) -> OnDemandThroughput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 OnDemandThroughput
impl Debug for OnDemandThroughput
Source§impl Default for OnDemandThroughput
impl Default for OnDemandThroughput
Source§fn default() -> OnDemandThroughput
fn default() -> OnDemandThroughput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OnDemandThroughput
impl<'de> Deserialize<'de> for OnDemandThroughput
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
Source§impl PartialEq for OnDemandThroughput
impl PartialEq for OnDemandThroughput
Source§fn eq(&self, other: &OnDemandThroughput) -> bool
fn eq(&self, other: &OnDemandThroughput) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for OnDemandThroughput
impl Serialize for OnDemandThroughput
impl StructuralPartialEq for OnDemandThroughput
Auto Trait Implementations§
impl Freeze for OnDemandThroughput
impl RefUnwindSafe for OnDemandThroughput
impl Send for OnDemandThroughput
impl Sync for OnDemandThroughput
impl Unpin for OnDemandThroughput
impl UnsafeUnpin for OnDemandThroughput
impl UnwindSafe for OnDemandThroughput
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