pub struct UsageCostMetrics {
pub backup_chc: f64,
pub compute_chc: f64,
pub data_transfer_chc: f64,
pub initial_load_chc: f64,
pub inter_region_tier1_data_transfer_chc: f64,
pub inter_region_tier2_data_transfer_chc: f64,
pub inter_region_tier3_data_transfer_chc: f64,
pub inter_region_tier4_data_transfer_chc: f64,
pub public_data_transfer_chc: f64,
pub storage_chc: f64,
}Expand description
UsageCostMetrics from the ClickHouse Cloud API.
Fields§
§backup_chc: f64§compute_chc: f64§data_transfer_chc: f64§initial_load_chc: f64§inter_region_tier1_data_transfer_chc: f64§inter_region_tier2_data_transfer_chc: f64§inter_region_tier3_data_transfer_chc: f64§inter_region_tier4_data_transfer_chc: f64§public_data_transfer_chc: f64§storage_chc: f64Trait Implementations§
Source§impl Clone for UsageCostMetrics
impl Clone for UsageCostMetrics
Source§fn clone(&self) -> UsageCostMetrics
fn clone(&self) -> UsageCostMetrics
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 UsageCostMetrics
impl Debug for UsageCostMetrics
Source§impl Default for UsageCostMetrics
impl Default for UsageCostMetrics
Source§fn default() -> UsageCostMetrics
fn default() -> UsageCostMetrics
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UsageCostMetrics
impl<'de> Deserialize<'de> for UsageCostMetrics
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 UsageCostMetrics
impl PartialEq for UsageCostMetrics
Source§fn eq(&self, other: &UsageCostMetrics) -> bool
fn eq(&self, other: &UsageCostMetrics) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for UsageCostMetrics
impl Serialize for UsageCostMetrics
impl StructuralPartialEq for UsageCostMetrics
Auto Trait Implementations§
impl Freeze for UsageCostMetrics
impl RefUnwindSafe for UsageCostMetrics
impl Send for UsageCostMetrics
impl Sync for UsageCostMetrics
impl Unpin for UsageCostMetrics
impl UnsafeUnpin for UsageCostMetrics
impl UnwindSafe for UsageCostMetrics
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