Serialize an integer.
pub fn int(self: *Serializer, val: anytype) Error!void
pub fn int(self: *Serializer, val: anytype) Error!void { try self.writer.printInt(val, 10, .lower, .{}); }