pub struct ExecutionResult<V> {
pub terminal_values: BTreeMap<NodeId, Vec<V>>,
pub receipt: ExecutionReceipt,
}Fields§
§terminal_values: BTreeMap<NodeId, Vec<V>>§receipt: ExecutionReceiptTrait Implementations§
Source§impl<V: Clone> Clone for ExecutionResult<V>
impl<V: Clone> Clone for ExecutionResult<V>
Source§fn clone(&self) -> ExecutionResult<V>
fn clone(&self) -> ExecutionResult<V>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<V: Debug> Debug for ExecutionResult<V>
impl<V: Debug> Debug for ExecutionResult<V>
impl<V: Eq> Eq for ExecutionResult<V>
Source§impl<V: PartialEq> PartialEq for ExecutionResult<V>
impl<V: PartialEq> PartialEq for ExecutionResult<V>
impl<V: PartialEq> StructuralPartialEq for ExecutionResult<V>
Auto Trait Implementations§
impl<V> Freeze for ExecutionResult<V>
impl<V> RefUnwindSafe for ExecutionResult<V>
impl<V> Send for ExecutionResult<V>
impl<V> Sync for ExecutionResult<V>
impl<V> Unpin for ExecutionResult<V>
impl<V> UnsafeUnpin for ExecutionResult<V>
impl<V> UnwindSafe for ExecutionResult<V>
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