Function format [src]
This function is defined to serialize a Zig source code representation of this
type, that, when parsed, will deserialize into the same data.
Prototype
pub fn format(wv: WindowsVersion, w: *std.Io.Writer) std.Io.Writer.Error!void Parameters
wv: WindowsVersionw: *std.Io.Writer Source
pub fn format(wv: WindowsVersion, w: *std.Io.Writer) std.Io.Writer.Error!void {
if (std.enums.tagName(WindowsVersion, wv)) |name| {
var vecs: [2][]const u8 = .{ ".", name };
return w.writeVecAll(&vecs);
} else {
return w.print("@enumFromInt(0x{X:0>8})", .{wv});
}
}