pub struct Binding {
pub name: ValueName,
pub value: Box<Expression>,
}
Expand description
Binding
represents mutable binding for previously bind values
Fields§
§name: ValueName
Binding value name
value: Box<Expression>
Value expression representation
Trait Implementations§
Source§impl<I: SemanticContextInstruction, E: ExtendedExpression<I>> From<Binding<'_, I, E>> for Binding
impl<I: SemanticContextInstruction, E: ExtendedExpression<I>> From<Binding<'_, I, E>> for Binding
impl StructuralPartialEq for Binding
Auto Trait Implementations§
impl Freeze for Binding
impl RefUnwindSafe for Binding
impl Send for Binding
impl Sync for Binding
impl Unpin 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