pub struct Frame<T> {
pub return_address: usize,
/* private fields */
}
Expand description
A call frame.
Contains:
- A
WriteManyTable
for storage of local variables. - A return address - the instruction pointer for the machine to return to when returning from this call.
Fields§
§return_address: usize
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for Frame<T>
impl<T> RefUnwindSafe for Frame<T>where
T: RefUnwindSafe,
impl<T> Send for Frame<T>where
T: Send,
impl<T> Sync for Frame<T>where
T: Sync,
impl<T> Unpin for Frame<T>where
T: Unpin,
impl<T> UnwindSafe for Frame<T>where
T: UnwindSafe,
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