Struct semantic_analyzer::types::Binding
source · pub struct Binding {
pub name: ValueName,
pub value: Box<Expression>,
}Expand description
Binding represents mutable binding for previously bind values
Fields§
§name: ValueNameBinding value name
value: Box<Expression>Value expression representation
Trait Implementations§
source§impl PartialEq for Binding
impl PartialEq for Binding
impl StructuralPartialEq for Binding
Auto Trait Implementations§
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