pub struct DatabasesPatchConfigBodyConfigSubtype1Timescaledb {
pub max_background_workers: Option<NonZeroU64>,
}Expand description
TimescaleDB extension configuration values
JSON schema
{
"description": "TimescaleDB extension configuration values",
"type": "object",
"properties": {
"max_background_workers": {
"description": "The number of background workers for timescaledb operations. Set to the sum of your number of databases and the total number of concurrent background workers you want running at any given point in time.",
"examples": [
8
],
"type": "integer",
"maximum": 4096.0,
"minimum": 1.0
}
}
}Fields§
§max_background_workers: Option<NonZeroU64>The number of background workers for timescaledb operations. Set to the sum of your number of databases and the total number of concurrent background workers you want running at any given point in time.
Trait Implementations§
Source§impl Clone for DatabasesPatchConfigBodyConfigSubtype1Timescaledb
impl Clone for DatabasesPatchConfigBodyConfigSubtype1Timescaledb
Source§fn clone(&self) -> DatabasesPatchConfigBodyConfigSubtype1Timescaledb
fn clone(&self) -> DatabasesPatchConfigBodyConfigSubtype1Timescaledb
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<'de> Deserialize<'de> for DatabasesPatchConfigBodyConfigSubtype1Timescaledb
impl<'de> Deserialize<'de> for DatabasesPatchConfigBodyConfigSubtype1Timescaledb
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 From<&DatabasesPatchConfigBodyConfigSubtype1Timescaledb> for DatabasesPatchConfigBodyConfigSubtype1Timescaledb
impl From<&DatabasesPatchConfigBodyConfigSubtype1Timescaledb> for DatabasesPatchConfigBodyConfigSubtype1Timescaledb
Source§fn from(value: &DatabasesPatchConfigBodyConfigSubtype1Timescaledb) -> Self
fn from(value: &DatabasesPatchConfigBodyConfigSubtype1Timescaledb) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DatabasesPatchConfigBodyConfigSubtype1Timescaledb
impl RefUnwindSafe for DatabasesPatchConfigBodyConfigSubtype1Timescaledb
impl Send for DatabasesPatchConfigBodyConfigSubtype1Timescaledb
impl Sync for DatabasesPatchConfigBodyConfigSubtype1Timescaledb
impl Unpin for DatabasesPatchConfigBodyConfigSubtype1Timescaledb
impl UnsafeUnpin for DatabasesPatchConfigBodyConfigSubtype1Timescaledb
impl UnwindSafe for DatabasesPatchConfigBodyConfigSubtype1Timescaledb
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