Function write [src]
Write byte into the ring buffer. Returns error.Full if the ring
buffer is full.
Prototype
pub fn write(self: *RingBuffer, byte: u8) Error!void
Parameters
self: *RingBuffer
byte: u8
Possible Errors
Source
pub fn write(self: *RingBuffer, byte: u8) Error!void {
if (self.isFull()) return error.Full;
self.writeAssumeCapacity(byte);
}