pub const Options = struct
pub const Options = struct { precision: ?usize = null, width: ?usize = null, alignment: Alignment = default_alignment, fill: u8 = default_fill_char, pub fn toNumber(o: Options, mode: Number.Mode, case: Case) Number { return .{ .mode = mode, .case = case, .precision = o.precision, .width = o.width, .alignment = o.alignment, .fill = o.fill, }; } }