pub struct MonitorBuf {
    sig_blocks: [f32; 768],
    len: [usize; 6],
    read_idx: [usize; 6],
}
Expand description

This structure holds the output of the 6 cell inputs and outputs that is currently being monitored by the frontend.

Fields

sig_blocks: [f32; 768]

Holds the data of the signals. Each signal has it’s own length. The lengths of the individual elements is reflected in the len attribute.

len: [usize; 6]

Holds the lengths of the individual signal data blocks in sig_blocks.

read_idx: [usize; 6]

Holds the lengths of the individual signal data blocks in sig_blocks.

Implementations

Allocates a monitor buffer that holds up to 6 signals.

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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

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.