toString
Returns a string representing this PlainTime in RFC 9557 format.
Parameters
- self:PlainTime
- PlainTime
- allocator:std.mem.Allocator
- std.mem.Allocator
Source
Implementation
pub fn toString(self: PlainTime, allocator: std.mem.Allocator) ![]u8 {
return toStringWithOptions(self, allocator, .{});
}