pub struct OnionLambdaRunnable { /* private fields */ }Implementations§
Source§impl OnionLambdaRunnable
impl OnionLambdaRunnable
pub fn new( argument: OnionStaticObject, self_object: &OnionObject, this_lambda: &OnionStaticObject, instruction: Arc<VMInstructionPackage>, ip: isize, ) -> Result<Self, RuntimeError>
Trait Implementations§
Source§impl Runnable for OnionLambdaRunnable
impl Runnable for OnionLambdaRunnable
fn receive( &mut self, step_result: &StepResult, _gc: &mut GC<OnionObjectCell>, ) -> Result<(), RuntimeError>
fn step(&mut self, gc: &mut GC<OnionObjectCell>) -> StepResult
fn copy(&self) -> Box<dyn Runnable>
fn format_context(&self) -> Result<Value, RuntimeError>
fn copy_with_gc(&self, gc: &mut GC<OnionObjectCell>) -> Box<dyn Runnable>
Auto Trait Implementations§
impl Freeze for OnionLambdaRunnable
impl !RefUnwindSafe for OnionLambdaRunnable
impl Send for OnionLambdaRunnable
impl Sync for OnionLambdaRunnable
impl Unpin for OnionLambdaRunnable
impl !UnwindSafe for OnionLambdaRunnable
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