pub struct RenderedSolution {
pub bindings: Vec<Binding>,
}Expand description
One captured solution: bindings sorted by variable name (v1 rule), rendered immediately (terms are undone by backtracking afterwards).
Fields§
§bindings: Vec<Binding>per query variable, _ excluded. The bson encoder walks word via
copyterm::copy_to_buf; the text encoder uses the text string.
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