pub struct LocalThroughput {
pub region: Option<String>,
pub write_operations_per_second: Option<i64>,
pub read_operations_per_second: Option<i64>,
pub extra: Value,
}
Expand description
Optional. Expected read and write throughput for this region.
Fields§
§region: Option<String>
Specify one of the selected cloud provider regions for the subscription.
write_operations_per_second: Option<i64>
Write operations for this region per second. Default: 1000 ops/sec
read_operations_per_second: Option<i64>
Read operations for this region per second. Default: 1000 ops/sec
extra: Value
Additional fields from the API
Trait Implementations§
Source§impl Clone for LocalThroughput
impl Clone for LocalThroughput
Source§fn clone(&self) -> LocalThroughput
fn clone(&self) -> LocalThroughput
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 LocalThroughput
impl Debug for LocalThroughput
Source§impl<'de> Deserialize<'de> for LocalThroughput
impl<'de> Deserialize<'de> for LocalThroughput
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 LocalThroughput
impl RefUnwindSafe for LocalThroughput
impl Send for LocalThroughput
impl Sync for LocalThroughput
impl Unpin for LocalThroughput
impl UnwindSafe for LocalThroughput
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