pub struct DataFromSolution {
pub solution_index: SolutionIndex,
pub data: Vec<DataOutput>,
}Expand description
The data outputs from solving a particular predicate.
Fields§
§solution_index: SolutionIndexThe index of the solution that produced this data.
data: Vec<DataOutput>The data output from the solution.
Trait Implementations§
Source§impl Debug for DataFromSolution
impl Debug for DataFromSolution
Source§impl PartialEq for DataFromSolution
impl PartialEq for DataFromSolution
impl StructuralPartialEq for DataFromSolution
Auto Trait Implementations§
impl Freeze for DataFromSolution
impl RefUnwindSafe for DataFromSolution
impl Send for DataFromSolution
impl Sync for DataFromSolution
impl Unpin for DataFromSolution
impl UnwindSafe for DataFromSolution
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> 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