pub enum NumberKind {
I64,
F64,
U64,
}Available on crate feature
metrics only.Expand description
A descriptor for the encoded data type of a Number
Variants§
I64
A Number that stores i64 values.
F64
A Number that stores f64 values.
U64
A Number that stores u64 values.
Implementations§
Trait Implementations§
Source§impl Clone for NumberKind
impl Clone for NumberKind
Source§fn clone(&self) -> NumberKind
fn clone(&self) -> NumberKind
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 NumberKind
impl Debug for NumberKind
Source§impl Hash for NumberKind
impl Hash for NumberKind
Source§impl PartialEq for NumberKind
impl PartialEq for NumberKind
impl StructuralPartialEq for NumberKind
Auto Trait Implementations§
impl Freeze for NumberKind
impl RefUnwindSafe for NumberKind
impl Send for NumberKind
impl Sync for NumberKind
impl Unpin for NumberKind
impl UnwindSafe for NumberKind
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
Available on crate feature
trace only.Source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
Available on crate feature
trace only.