pub struct DatabaseThroughputSpec {
pub by: String,
pub value: i64,
pub extra: Value,
}
Expand description
Optional. Throughput measurement method.
Fields§
§by: String
Throughput measurement method. Use ‘operations-per-second’ for all new databases.
value: i64
Throughput value in the selected measurement method.
extra: Value
Additional fields from the API
Trait Implementations§
Source§impl Clone for DatabaseThroughputSpec
impl Clone for DatabaseThroughputSpec
Source§fn clone(&self) -> DatabaseThroughputSpec
fn clone(&self) -> DatabaseThroughputSpec
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 DatabaseThroughputSpec
impl Debug for DatabaseThroughputSpec
Source§impl<'de> Deserialize<'de> for DatabaseThroughputSpec
impl<'de> Deserialize<'de> for DatabaseThroughputSpec
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 DatabaseThroughputSpec
impl RefUnwindSafe for DatabaseThroughputSpec
impl Send for DatabaseThroughputSpec
impl Sync for DatabaseThroughputSpec
impl Unpin for DatabaseThroughputSpec
impl UnwindSafe for DatabaseThroughputSpec
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