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
8
use sqlx::types::chrono::{DateTime, Utc};
use sqlx::FromRow;

#[derive(Debug, FromRow, Clone, PartialEq)]
pub struct OutboxCleanerSchedule {
    pub cron_expression: String,
    pub last_execution: DateTime<Utc>,
}