pub struct QueryAnswer {
pub bindings: Vec<(String, EntityId)>,
}Expand description
One answer binding (variable → entity id).
Fields§
§bindings: Vec<(String, EntityId)>Variable bindings.
Trait Implementations§
Source§impl Clone for QueryAnswer
impl Clone for QueryAnswer
Source§fn clone(&self) -> QueryAnswer
fn clone(&self) -> QueryAnswer
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 QueryAnswer
impl Debug for QueryAnswer
impl Eq for QueryAnswer
Source§impl PartialEq for QueryAnswer
impl PartialEq for QueryAnswer
Source§fn eq(&self, other: &QueryAnswer) -> bool
fn eq(&self, other: &QueryAnswer) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for QueryAnswer
Auto Trait Implementations§
impl Freeze for QueryAnswer
impl RefUnwindSafe for QueryAnswer
impl Send for QueryAnswer
impl Sync for QueryAnswer
impl Unpin for QueryAnswer
impl UnsafeUnpin for QueryAnswer
impl UnwindSafe for QueryAnswer
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