Function fmt [src]
Prototype
pub fn fmt(self: @This(), raw_string: []const u8) std.fmt.Formatter(formatMessage)
Parameters
self: @This()
raw_string: []const u8
Source
pub fn fmt(self: @This(), raw_string: []const u8) std.fmt.Formatter(formatMessage) {
return .{ .data = .{
.err = self,
.raw_string = raw_string,
} };
}