Struct essential_check::types::solution::SolutionData
source · pub struct SolutionData {
pub predicate_to_solve: PredicateAddress,
pub decision_variables: Vec<Vec<i64>>,
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<Vec<i64>>
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<SolutionData, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<SolutionData, <__D as Deserializer<'de>>::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
source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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
)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