outbox-pattern-processor 0.3.6

Library to make easier to dispatch your outbox-pattern data from database to SQS, SNS and/or HTTP(S) gateways
Documentation
1
2
3
4
5
6
7
use crate::outbox::Outbox;

#[derive(Clone, Default)]
pub struct NotificationResult {
    pub sent: Vec<Outbox>,
    pub failed: Vec<Outbox>,
}