use derive_more::{Display, Error};
#[derive(Debug, Display, Clone, Copy, Error)]
pub enum ParsedValue {
#[display(fmt = "{value} ")]
Small {
value: u16,
},
#[display(fmt = "{coefficient:.1}{unit}")]
Big {
coefficient: f32,
unit: char,
scale: u64,
exponent: usize,
},
}