Function writeByte [src]
Prototype
pub inline fn writeByte(self: Self, byte: u8) Error!void
Parameters
self: Self
byte: u8
Source
pub inline fn writeByte(self: Self, byte: u8) Error!void {
return @errorCast(self.any().writeByte(byte));
}