pub struct StatsSchemaValue {
pub base: Option<i8>,
pub bucket_size: Option<u32>,
pub unit: Option<StatsUnit>,
pub exponent: i16,
pub name: String,
pub type_: StatsType,
}
Fields§
§base: Option<i8>
§bucket_size: Option<u32>
§unit: Option<StatsUnit>
§exponent: i16
§name: String
§type_: StatsType
Trait Implementations§
Source§impl Clone for StatsSchemaValue
impl Clone for StatsSchemaValue
Source§fn clone(&self) -> StatsSchemaValue
fn clone(&self) -> StatsSchemaValue
Returns a duplicate of the value. Read more
1.0.0 · 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 StatsSchemaValue
impl Debug for StatsSchemaValue
Source§impl<'de> Deserialize<'de> for StatsSchemaValue
impl<'de> Deserialize<'de> for StatsSchemaValue
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
Auto Trait Implementations§
impl Freeze for StatsSchemaValue
impl RefUnwindSafe for StatsSchemaValue
impl Send for StatsSchemaValue
impl Sync for StatsSchemaValue
impl Unpin for StatsSchemaValue
impl UnwindSafe for StatsSchemaValue
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