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: *RingBufferbyte: u8

Possible Errors

Full
ReadLengthInvalid

Source

pub fn write(self: *RingBuffer, byte: u8) Error!void { if (self.isFull()) return error.Full; self.writeAssumeCapacity(byte); }