pub enum PubSubOrdering {
PerTopicOrdered,
BestEffort,
}Expand description
Ordering contract for one PubSub backend.
Variants§
PerTopicOrdered
Messages are delivered in topic order.
BestEffort
Ordering is best effort and may be reordered by backend behavior.
Trait Implementations§
Source§impl Clone for PubSubOrdering
impl Clone for PubSubOrdering
Source§fn clone(&self) -> PubSubOrdering
fn clone(&self) -> PubSubOrdering
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 moreSource§impl Debug for PubSubOrdering
impl Debug for PubSubOrdering
Source§impl PartialEq for PubSubOrdering
impl PartialEq for PubSubOrdering
Source§fn eq(&self, other: &PubSubOrdering) -> bool
fn eq(&self, other: &PubSubOrdering) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for PubSubOrdering
impl Eq for PubSubOrdering
impl StructuralPartialEq for PubSubOrdering
Auto Trait Implementations§
impl Freeze for PubSubOrdering
impl RefUnwindSafe for PubSubOrdering
impl Send for PubSubOrdering
impl Sync for PubSubOrdering
impl Unpin for PubSubOrdering
impl UnsafeUnpin for PubSubOrdering
impl UnwindSafe for PubSubOrdering
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