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