Skip to main content

appletheia_application/outbox/
outbox_relay_run_report.rs

1#[derive(Copy, Clone, Debug, PartialEq, Eq)]
2pub enum OutboxRelayRunReport {
3    Progress {
4        processed_outbox_count: super::ProcessedOutboxCount,
5    },
6    Idle,
7    Throttled,
8}