pub struct ExecutionOutput {
pub value: Value,
pub state: State,
}Expand description
Execution result with final value and mutated state.
Fields§
§value: Value§state: StateTrait Implementations§
Source§impl Clone for ExecutionOutput
impl Clone for ExecutionOutput
Source§fn clone(&self) -> ExecutionOutput
fn clone(&self) -> ExecutionOutput
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 moreAuto Trait Implementations§
impl Freeze for ExecutionOutput
impl RefUnwindSafe for ExecutionOutput
impl Send for ExecutionOutput
impl Sync for ExecutionOutput
impl Unpin for ExecutionOutput
impl UnsafeUnpin for ExecutionOutput
impl UnwindSafe for ExecutionOutput
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