pub struct ValueDesc {
pub func: FunctionKey,
pub index: OpIndex,
pub typ: ValueType,
pub is_up_value: bool,
pub stack: Weak<RefCell<Stack>>,
pub stack_base: OpIndex,
}
Fields§
§func: FunctionKey
§index: OpIndex
§typ: ValueType
§is_up_value: bool
§stack: Weak<RefCell<Stack>>
§stack_base: OpIndex
Implementations§
Trait Implementations§
impl Eq for ValueDesc
Auto Trait Implementations§
impl Freeze for ValueDesc
impl !RefUnwindSafe for ValueDesc
impl !Send for ValueDesc
impl !Sync for ValueDesc
impl Unpin for ValueDesc
impl !UnwindSafe for ValueDesc
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