pub enum Expression<T>where
T: TypeSet,{
Assignment {
left_expr: LeftHandExpression,
operator: Token,
right_expr: RightHandExpression<T>,
},
Expression {
expression: RightHandExpression<T>,
},
}Variants§
Implementations§
Trait Implementations§
Source§impl<T> Clone for Expression<T>where
T: TypeSet,
impl<T> Clone for Expression<T>where
T: TypeSet,
Auto Trait Implementations§
impl<T> Freeze for Expression<T>
impl<T> RefUnwindSafe for Expression<T>
impl<T> Send for Expression<T>
impl<T> Sync for Expression<T>
impl<T> Unpin for Expression<T>
impl<T> UnwindSafe for Expression<T>
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