Struct tc_tracing::Values[][src]

pub struct Values {
    pub bool_values: FxHashMap<String, bool>,
    pub i64_values: FxHashMap<String, i64>,
    pub u64_values: FxHashMap<String, u64>,
    pub string_values: FxHashMap<String, String>,
}

Holds associated values for a tracing span

Fields

bool_values: FxHashMap<String, bool>

HashMap of bool values

i64_values: FxHashMap<String, i64>

HashMap of i64 values

u64_values: FxHashMap<String, u64>

HashMap of u64 values

string_values: FxHashMap<String, String>

HashMap of String values

Implementations

impl Values[src]

pub fn new() -> Self[src]

Returns a new instance of Values

pub fn is_empty(&self) -> bool[src]

Checks if all individual collections are empty

Trait Implementations

impl Clone for Values[src]

impl Debug for Values[src]

impl Default for Values[src]

impl Display for Values[src]

impl Serialize for Values[src]

impl Visit for Values[src]

Auto Trait Implementations

impl RefUnwindSafe for Values

impl Send for Values

impl Sync for Values

impl Unpin for Values

impl UnwindSafe for Values

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Serialize for T where
    T: Serialize + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,