pub struct ControlOrder<const BETTER_ERR: bool>;
Expand description

Extract the dependency order of a list of control programs. Dependencies are defined using read/write sets used in the control program. The read/write sets ignore ports on constants and ThisComponent.

For example, if we have control programs C1 and C2 with read sets R1 and R2 and write sets W1 and W2 respectively, we can define an order relationship:

C1 < C2 if (R1 subset of W2) and (R2 disjoint W1) C1 > C2 if (R2 subset of W1) and (R1 disjoint W2) C1 =!= if (R1 subset of W2) and (R2 subset of W1)

Setting BETTER_ERR turns on additional machinery to generate an explanation for what caused the error but may require expensive computations. Turn on when cycles should be a hard error.

Implementations

Return a total order for the control programs. Returns an error if there is a cycle

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.