outbox_pattern_processor/
notification.rs

1use crate::outbox::Outbox;
2
3#[derive(Clone, Default)]
4pub struct NotificationResult {
5    pub sent: Vec<Outbox>,
6    pub failed: Vec<Outbox>,
7}