pub struct Binding {
pub name: String,
pub text: String,
pub word: Word,
}Expand description
One query-variable binding, materialized at solution time. word is the
already-dereferenced value term (zero extra computation over producing the
text); the bson encoder walks it via copyterm::copy_to_buf.
Fields§
§name: String§text: String§word: WordAuto Trait Implementations§
impl Freeze for Binding
impl RefUnwindSafe for Binding
impl Send for Binding
impl Sync for Binding
impl Unpin for Binding
impl UnsafeUnpin for Binding
impl UnwindSafe for Binding
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