Struct essential_types::solution::SolutionData
source · pub struct SolutionData {
pub predicate_to_solve: PredicateAddress,
pub decision_variables: Vec<Value>,
pub transient_data: Vec<Mutation>,
pub state_mutations: Vec<Mutation>,
}
Expand description
The data the solver is required to provide to solve a predicate.
Fields§
§predicate_to_solve: PredicateAddress
Which predicate this input data is for.
decision_variables: Vec<Value>
The decision variables for the predicate.
transient_data: Vec<Mutation>
The transient data being proposed.
state_mutations: Vec<Mutation>
The state mutations being proposed.
Trait Implementations§
source§impl Clone for SolutionData
impl Clone for SolutionData
source§fn clone(&self) -> SolutionData
fn clone(&self) -> SolutionData
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 moresource§impl Debug for SolutionData
impl Debug for SolutionData
source§impl<'de> Deserialize<'de> for SolutionData
impl<'de> Deserialize<'de> for SolutionData
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Hash for SolutionData
impl Hash for SolutionData
source§impl Ord for SolutionData
impl Ord for SolutionData
source§fn cmp(&self, other: &SolutionData) -> Ordering
fn cmp(&self, other: &SolutionData) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for SolutionData
impl PartialEq for SolutionData
source§fn eq(&self, other: &SolutionData) -> bool
fn eq(&self, other: &SolutionData) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for SolutionData
impl PartialOrd for SolutionData
source§fn partial_cmp(&self, other: &SolutionData) -> Option<Ordering>
fn partial_cmp(&self, other: &SolutionData) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl Serialize for SolutionData
impl Serialize for SolutionData
impl Eq for SolutionData
impl StructuralPartialEq for SolutionData
Auto Trait Implementations§
impl Freeze for SolutionData
impl RefUnwindSafe for SolutionData
impl Send for SolutionData
impl Sync for SolutionData
impl Unpin for SolutionData
impl UnwindSafe for SolutionData
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)