pub struct SolutionSetsSummary {
pub succeeded: Vec<(ContentAddress, Gas)>,
pub failed: Vec<(ContentAddress, SolutionSetIndex, InvalidSet)>,
}
Expand description
A summary of building a block, returned by build_block_fifo
.
Fields§
§succeeded: Vec<(ContentAddress, Gas)>
The addresses of all successful solution sets.
failed: Vec<(ContentAddress, SolutionSetIndex, InvalidSet)>
The addresses of all failed solution sets.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SolutionSetsSummary
impl !RefUnwindSafe for SolutionSetsSummary
impl Send for SolutionSetsSummary
impl Sync for SolutionSetsSummary
impl Unpin for SolutionSetsSummary
impl !UnwindSafe for SolutionSetsSummary
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