pub struct SubscriptionSemantics {
pub ack_mode: AckMode,
pub ordering_mode: OrderingMode,
pub balance_mode: ConsumerBalanceMode,
pub wildcard_topic: bool,
pub require_ordered_key: bool,
}Fields§
§ack_mode: AckMode§ordering_mode: OrderingMode§balance_mode: ConsumerBalanceMode§wildcard_topic: bool§require_ordered_key: boolImplementations§
Source§impl SubscriptionSemantics
impl SubscriptionSemantics
pub fn validate(&self) -> Result<(), EventBusError>
Trait Implementations§
Source§impl Clone for SubscriptionSemantics
impl Clone for SubscriptionSemantics
Source§fn clone(&self) -> SubscriptionSemantics
fn clone(&self) -> SubscriptionSemantics
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SubscriptionSemantics
impl RefUnwindSafe for SubscriptionSemantics
impl Send for SubscriptionSemantics
impl Sync for SubscriptionSemantics
impl Unpin for SubscriptionSemantics
impl UnsafeUnpin for SubscriptionSemantics
impl UnwindSafe for SubscriptionSemantics
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more