pub struct ClickStackNumberFormat {
pub average: bool,
pub currency_symbol: String,
pub decimal_bytes: bool,
pub factor: f64,
pub mantissa: i64,
pub numeric_unit: ClickStackNumberFormatNumericunit,
pub output: ClickStackNumberFormatOutput,
pub thousand_separated: bool,
pub unit: String,
}Expand description
ClickStackNumberFormat from the ClickHouse Cloud API.
Fields§
§average: bool§currency_symbol: String§decimal_bytes: bool§factor: f64§mantissa: i64§numeric_unit: ClickStackNumberFormatNumericunit§output: ClickStackNumberFormatOutput§thousand_separated: bool§unit: StringTrait Implementations§
Source§impl Clone for ClickStackNumberFormat
impl Clone for ClickStackNumberFormat
Source§fn clone(&self) -> ClickStackNumberFormat
fn clone(&self) -> ClickStackNumberFormat
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 ClickStackNumberFormat
impl Debug for ClickStackNumberFormat
Source§impl Default for ClickStackNumberFormat
impl Default for ClickStackNumberFormat
Source§fn default() -> ClickStackNumberFormat
fn default() -> ClickStackNumberFormat
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ClickStackNumberFormat
impl<'de> Deserialize<'de> for ClickStackNumberFormat
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 ClickStackNumberFormat
impl PartialEq for ClickStackNumberFormat
Source§fn eq(&self, other: &ClickStackNumberFormat) -> bool
fn eq(&self, other: &ClickStackNumberFormat) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ClickStackNumberFormat
impl Serialize for ClickStackNumberFormat
impl StructuralPartialEq for ClickStackNumberFormat
Auto Trait Implementations§
impl Freeze for ClickStackNumberFormat
impl RefUnwindSafe for ClickStackNumberFormat
impl Send for ClickStackNumberFormat
impl Sync for ClickStackNumberFormat
impl Unpin for ClickStackNumberFormat
impl UnsafeUnpin for ClickStackNumberFormat
impl UnwindSafe for ClickStackNumberFormat
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