cerk 0.2.11

CERK is an open source CloudEvents Router written in Rust with a MicroKernel architecture.
1
2
3
4
5
6
7
8
use super::DeliveryGuarantee;

/// CloudEventRoutingArgs specifies how a CloudEvent should be routed
#[derive(Default, Debug, Clone, PartialEq)]
pub struct CloudEventRoutingArgs {
    /// Message delivery guarantees with which the CloudEvent was received
    pub delivery_guarantee: DeliveryGuarantee,
}