probe-rs 0.9.0

A collection of on chip debugging tools to communicate with microchips.
Documentation
use super::*;

#[derive(Debug, Default)]
pub struct Variable {
    pub name: String,
    pub file: String,
    pub line: u64,
    pub value: u64,
    pub typ: Type,
}