pub struct Solution<'a> {
query: &'a UniverseQuery<'a>,
solution: SolutionHash,
}
Fields§
§query: &'a UniverseQuery<'a>
§solution: SolutionHash
Implementations§
Source§impl<'a> Solution<'a>
impl<'a> Solution<'a>
pub fn as_string(&self) -> String
pub fn into_pipeline_config(self) -> Option<PipelineState>
Sourcepub fn as_pipeline_config(&self) -> Option<PipelineState>
pub fn as_pipeline_config(&self) -> Option<PipelineState>
Tries to converts the Config variable into a PipelineState.
The Config must be the result of config_path_by_name(_, _, Config).
.
fn toconf(&self, term: &Term) -> Option<PipelineState>
pub fn get_term(&self, variable: &str) -> Option<&Term>
Auto Trait Implementations§
impl<'a> Freeze for Solution<'a>
impl<'a> RefUnwindSafe for Solution<'a>
impl<'a> Send for Solution<'a>
impl<'a> Sync for Solution<'a>
impl<'a> Unpin for Solution<'a>
impl<'a> UnwindSafe for Solution<'a>
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