union LinearFifoBufferType [src]
Fields
Static: usizeThe buffer is internal to the fifo; it is of the specified size.
SliceThe buffer is passed as a slice to the initialiser.
DynamicThe buffer is managed dynamically using a mem.Allocator.
Source
pub const LinearFifoBufferType = union(enum) {
/// The buffer is internal to the fifo; it is of the specified size.
Static: usize,
/// The buffer is passed as a slice to the initialiser.
Slice,
/// The buffer is managed dynamically using a `mem.Allocator`.
Dynamic,
}