pub struct ExprDesc {
pub k: ExprKind,
pub u: ExprPayload,
pub t: i32,
pub f: i32,
}Expand description
C: expdesc — describes a potentially-deferred expression/variable.
Field t/f are patch-lists for short-circuit boolean evaluation.
Fields§
§k: ExprKind§u: ExprPayload§t: i32C: e.t — patch list for ‘exit when true’; NO_JUMP if none.
f: i32C: e.f — patch list for ‘exit when false’; NO_JUMP if none.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ExprDesc
impl !RefUnwindSafe for ExprDesc
impl !Send for ExprDesc
impl !Sync for ExprDesc
impl Unpin for ExprDesc
impl UnsafeUnpin for ExprDesc
impl !UnwindSafe for ExprDesc
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