pub trait TxSubmitOutcomeReporter: Send + Sync {
// Required method
fn record_outcome(&self, outcome: &TxSubmitOutcome);
}Expand description
Callback surface for external outcome sinks.
Required Methods§
Sourcefn record_outcome(&self, outcome: &TxSubmitOutcome)
fn record_outcome(&self, outcome: &TxSubmitOutcome)
Records one structured outcome.