outbox_pattern_processor/
notification.rs

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>,
}