pub struct Lowered {
pub func: Func,
pub stack: Stack,
}Expand description
A lowered function, and what the frame needs that the machine IR does not hold.
Fields§
§func: FuncThe function, in machine instructions.
stack: StackWhat it wants its stack to look like, which is separate from the function so that the two can be read and written at the same time.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Lowered
impl RefUnwindSafe for Lowered
impl Send for Lowered
impl Sync for Lowered
impl Unpin for Lowered
impl UnsafeUnpin for Lowered
impl UnwindSafe for Lowered
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