blink_core 0.1.0

Core interpreter for the Blink Lisp dialect
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::value::SourceRange;
use serde::{ Deserialize, Serialize};

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct TelemetryEvent {
    pub form: String,
    pub duration_us: u128,
    pub result_type: String,
    pub result_size: Option<usize>,
    pub source: Option<SourceRange>,
}