NumericAnnotation

Type Alias NumericAnnotation 

Source
pub type NumericAnnotation = Annotation<u64>;
Expand description

Type alias for numeric annotations (key-value pairs with u64 values).

Aliased Type§

pub struct NumericAnnotation {
    pub key: String,
    pub value: u64,
}

Fields§

§key: String

The key of the annotation.

§value: u64

The value of the annotation.