pub enum InnerOutput {
Return(Value),
Perform {
input: Value,
effect: ConcEffect,
},
RunOther {
fn_ref: FnRef,
parameters: HashMap<ConcType, Value>,
},
Running,
}Variants§
Trait Implementations§
Source§impl Clone for InnerOutput
impl Clone for InnerOutput
Source§fn clone(&self) -> InnerOutput
fn clone(&self) -> InnerOutput
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for InnerOutput
impl Debug for InnerOutput
Source§impl PartialEq for InnerOutput
impl PartialEq for InnerOutput
impl StructuralPartialEq for InnerOutput
Auto Trait Implementations§
impl Freeze for InnerOutput
impl RefUnwindSafe for InnerOutput
impl Send for InnerOutput
impl Sync for InnerOutput
impl Unpin for InnerOutput
impl UnwindSafe for InnerOutput
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