pub enum Unit {
Show 17 variants Count, Percent, Seconds, Milliseconds, Microseconds, Nanoseconds, Tebibytes, Gigibytes, Mebibytes, Kibibytes, Bytes, TerabitsPerSecond, GigabitsPerSecond, MegabitsPerSecond, KilobitsPerSecond, BitsPerSecond, CountPerSecond,
}
Expand description

Units for a given metric.

While metrics do not necessarily need to be tied to a particular unit to be recorded, some downstream systems natively support defining units and so they can be specified during registration.

Variants

Count

Count.

Percent

Percentage.

Seconds

Seconds.

One second is equal to 1000 milliseconds.

Milliseconds

Milliseconds.

One millisecond is equal to 1000 microseconds.

Microseconds

Microseconds.

One microsecond is equal to 1000 nanoseconds.

Nanoseconds

Nanoseconds.

Tebibytes

Tebibytes.

One tebibyte is equal to 1024 gigibytes.

Gigibytes

Gigibytes.

One gigibyte is equal to 1024 mebibytes.

Mebibytes

Mebibytes.

One mebibyte is equal to 1024 kibibytes.

Kibibytes

Kibibytes.

One kibibyte is equal to 1024 bytes.

Bytes

Bytes.

TerabitsPerSecond

Terabits per second.

One terabit is equal to 1000 gigabits.

GigabitsPerSecond

Gigabits per second.

One gigabit is equal to 1000 megabits.

MegabitsPerSecond

Megabits per second.

One megabit is equal to 1000 kilobits.

KilobitsPerSecond

Kilobits per second.

One kilobit is equal to 1000 bits.

BitsPerSecond

Bits per second.

CountPerSecond

Count per second.

Implementations

Gets the string form of this Unit.

Gets the canonical string label for the given unit.

For example, the canonical label for Seconds would be s, while for Nanoseconds, it would be ns.

Not all units have a meaningful display label and so some may be empty.

Converts the string representation of a unit back into Unit if possible.

The value passed here should match the output of Unit::as_str.

Whether or not this unit relates to the measurement of time.

Whether or not this unit relates to the measurement of data.

Whether or not this unit relates to the measurement of data rates.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more