1 2 3 4 5 6 7 8 9
use nalgebra::Scalar; pub struct Symbol<T: Scalar> { name: String, value: Option<T>, } pub type Size = Symbol<u64>;