pub enum ExprResult {
Const(Const),
Reg(Reg),
Jump(Jump),
Nil,
True,
False,
}
Variants§
Implementations§
Source§impl ExprResult
impl ExprResult
Auto Trait Implementations§
impl Freeze for ExprResult
impl RefUnwindSafe for ExprResult
impl Send for ExprResult
impl Sync for ExprResult
impl Unpin for ExprResult
impl UnwindSafe for ExprResult
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