pub struct CurrentScaling {
pub active_entry_id: Uuid,
pub effective_autoscaling_mode: CurrentScalingEffectiveautoscalingmode,
pub effective_idle_scaling: bool,
pub effective_idle_timeout_minutes: i64,
pub effective_max_replica_memory_gb: f64,
pub effective_max_replicas: i64,
pub effective_min_replica_memory_gb: f64,
pub effective_min_replicas: i64,
}Expand description
CurrentScaling from the ClickHouse Cloud API.
Fields§
§active_entry_id: Uuid§effective_autoscaling_mode: CurrentScalingEffectiveautoscalingmode§effective_idle_scaling: bool§effective_idle_timeout_minutes: i64§effective_max_replica_memory_gb: f64§effective_max_replicas: i64§effective_min_replica_memory_gb: f64§effective_min_replicas: i64Trait Implementations§
Source§impl Clone for CurrentScaling
impl Clone for CurrentScaling
Source§fn clone(&self) -> CurrentScaling
fn clone(&self) -> CurrentScaling
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 CurrentScaling
impl Debug for CurrentScaling
Source§impl Default for CurrentScaling
impl Default for CurrentScaling
Source§fn default() -> CurrentScaling
fn default() -> CurrentScaling
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CurrentScaling
impl<'de> Deserialize<'de> for CurrentScaling
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 CurrentScaling
impl PartialEq for CurrentScaling
Source§fn eq(&self, other: &CurrentScaling) -> bool
fn eq(&self, other: &CurrentScaling) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CurrentScaling
impl Serialize for CurrentScaling
impl StructuralPartialEq for CurrentScaling
Auto Trait Implementations§
impl Freeze for CurrentScaling
impl RefUnwindSafe for CurrentScaling
impl Send for CurrentScaling
impl Sync for CurrentScaling
impl Unpin for CurrentScaling
impl UnsafeUnpin for CurrentScaling
impl UnwindSafe for CurrentScaling
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