pub struct RenderedSolution {
pub bindings: Vec<(String, String, String)>,
}Expand description
One captured solution: bindings sorted by variable name (v1 rule), rendered immediately (terms are undone by backtracking afterwards).
Fields§
§bindings: Vec<(String, String, String)>(name, json_value, text_value) per query variable, _ excluded.
Auto Trait Implementations§
impl Freeze for RenderedSolution
impl RefUnwindSafe for RenderedSolution
impl Send for RenderedSolution
impl Sync for RenderedSolution
impl Unpin for RenderedSolution
impl UnsafeUnpin for RenderedSolution
impl UnwindSafe for RenderedSolution
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