pub struct Evaluated;Expand description
The evaluated stage, after evaluation against a single state.
Trait Implementations§
impl Copy for Evaluated
Source§impl DecisionVariableTableStage for Evaluated
impl DecisionVariableTableStage for Evaluated
Source§type Row = EvaluatedDecisionVariable
type Row = EvaluatedDecisionVariable
Intrinsic row payload stored in the table.
Source§type Columns = EvaluatedDecisionVariableColumns
type Columns = EvaluatedDecisionVariableColumns
Sparse sidecar columns owned by this table stage. Read more
Source§type TableValidationContext = ()
type TableValidationContext = ()
Additional context needed to validate stage-specific table invariants.
Source§fn validate_stage_table_invariants(
_entries: &BTreeMap<VariableID, Self::Row>,
_columns: &Self::Columns,
_context: Self::TableValidationContext,
) -> Result<()>
fn validate_stage_table_invariants( _entries: &BTreeMap<VariableID, Self::Row>, _columns: &Self::Columns, _context: Self::TableValidationContext, ) -> Result<()>
Validate stage-specific table invariants.
impl Eq for Evaluated
Source§impl Stage<Constraint<Evaluated>> for Evaluated
impl Stage<Constraint<Evaluated>> for Evaluated
type Data = EvaluatedData
Source§impl Stage<OneHotConstraint<Evaluated>> for Evaluated
impl Stage<OneHotConstraint<Evaluated>> for Evaluated
type Data = OneHotEvaluatedData
Source§impl Stage<Sos1Constraint<Evaluated>> for Evaluated
impl Stage<Sos1Constraint<Evaluated>> for Evaluated
type Data = Sos1EvaluatedData
impl StructuralPartialEq for Evaluated
Auto Trait Implementations§
impl Freeze for Evaluated
impl RefUnwindSafe for Evaluated
impl Send for Evaluated
impl Sync for Evaluated
impl Unpin for Evaluated
impl UnsafeUnpin for Evaluated
impl UnwindSafe for Evaluated
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more