Struct bbqueue::BBBuffer[][src]

pub struct BBBuffer<const N: usize> { /* fields omitted */ }
Expand description

A backing structure for a BBQueue. Can be used to create either a BBQueue or a split Producer/Consumer pair

Implementations

Attempt to split the BBBuffer into Consumer and Producer halves to gain access to the buffer. If buffer has already been split, an error will be returned.

NOTE: When splitting, the underlying buffer will be explicitly initialized to zero. This may take a measurable amount of time, depending on the size of the buffer. This is necessary to prevent undefined behavior. If the buffer is placed at static scope within the .bss region, the explicit initialization will be elided (as it is already performed as part of memory initialization)

NOTE: If the thumbv6 feature is selected, this function takes a short critical section while splitting.

use bbqueue::BBBuffer;

// Create and split a new buffer
let buffer: BBBuffer<6> = BBBuffer::new();
let (prod, cons) = buffer.try_split().unwrap();

// Not possible to split twice
assert!(buffer.try_split().is_err());

Attempt to split the BBBuffer into FrameConsumer and FrameProducer halves to gain access to the buffer. If buffer has already been split, an error will be returned.

NOTE: When splitting, the underlying buffer will be explicitly initialized to zero. This may take a measurable amount of time, depending on the size of the buffer. This is necessary to prevent undefined behavior. If the buffer is placed at static scope within the .bss region, the explicit initialization will be elided (as it is already performed as part of memory initialization)

NOTE: If the thumbv6 feature is selected, this function takes a short critical section while splitting.

Attempt to release the Producer and Consumer

This re-initializes the buffer so it may be split in a different mode at a later time. There must be no read or write grants active, or an error will be returned.

The Producer and Consumer must be from THIS BBBuffer, or an error will be returned.

use bbqueue::BBBuffer;

// Create and split a new buffer
let buffer: BBBuffer<6> = BBBuffer::new();
let (prod, cons) = buffer.try_split().unwrap();

// Not possible to split twice
assert!(buffer.try_split().is_err());

// Release the producer and consumer
assert!(buffer.try_release(prod, cons).is_ok());

// Split the buffer in framed mode
let (fprod, fcons) = buffer.try_split_framed().unwrap();

Attempt to release the Producer and Consumer in Framed mode

This re-initializes the buffer so it may be split in a different mode at a later time. There must be no read or write grants active, or an error will be returned.

The FrameProducer and FrameConsumer must be from THIS BBBuffer, or an error will be returned.

Create a new constant inner portion of a BBBuffer.

NOTE: This is only necessary to use when creating a BBBuffer at static scope, and is generally never used directly. This process is necessary to work around current limitations in const fn, and will be replaced in the future.

use bbqueue::BBBuffer;

static BUF: BBBuffer<6> = BBBuffer::new();

fn main() {
   let (prod, cons) = BUF.try_split().unwrap();
}

Returns the size of the backing storage.

This is the maximum number of bytes that can be stored in this queue.

use bbqueue::BBBuffer;

// Create a new buffer of 6 elements
let buffer: BBBuffer<6> = BBBuffer::new();
assert_eq!(buffer.capacity(), 6);

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.