pub enum RunResult {
Del {
input: Identifier,
result: Context,
},
Update {
input: Func,
result: Context,
},
Eval {
input: Expr,
eval: Eval,
},
Search {
input: Identifier,
result: Option<Func>,
},
Context {
result: Context,
},
Unlambda {
input: Expr,
level: u8,
result: Expr,
},
}
Variants§
Auto Trait Implementations§
impl RefUnwindSafe for RunResult
impl Send for RunResult
impl Sync for RunResult
impl Unpin for RunResult
impl UnwindSafe for RunResult
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