pub(crate) trait DurableJournaling {
// Required method
async fn process_order_journaled(&mut self, request: UnifiedEngineRequest);
}Expand description
Durable journaling boundary for order processing.
Required Methods§
async fn process_order_journaled(&mut self, request: UnifiedEngineRequest)
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.