//! Ranged unit
usecore::num::NonZeroU128;#[derive(Debug)]/// Ranged unit.
pubstructRangedUnit{/// The maximum value of the range (excluded).
////// This will be the minimum value of the next range.
pubrange_max: NonZeroU128,
/// The abbr unit when the value is less than `range_max`.
pubunit:Option<&'staticstr>,
}