Enum rtlola_interpreter::queued::QueueLength
source · pub enum QueueLength {
Unbounded,
Bounded(usize),
}Expand description
Represents the length of a queue used for communication. Bounding its length can be useful in resource constraint environments.
Variants§
Unbounded
There is no bound on the queue.
Bounded(usize)
The queue is bounded to keep at most this many elements.
Trait Implementations§
source§impl Clone for QueueLength
impl Clone for QueueLength
source§fn clone(&self) -> QueueLength
fn clone(&self) -> QueueLength
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more