/// Range check columns in the main execution trace (2 columns).
#[repr(C)]#[derive(Debug, Clone, Default)]pubstructRangeCols<T>{/// Multiplicity: how many times this value is range-checked.
pubmultiplicity: T,
/// The value being range-checked.
pubvalue: T,
}