nu_protocol/ast/
value_with_unit.rs1use super::Expression;
2use crate::{Spanned, Unit};
3use serde::{Deserialize, Serialize};
4
5#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
6pub struct ValueWithUnit {
7 pub expr: Expression,
8 pub unit: Spanned<Unit>,
9}