pub enum SyndicationMode {
ExactlyOnce,
Broadcast,
}Expand description
The syndication mode of a queue.
Variants§
ExactlyOnce
A single-delivery queue will deliver a message to a single consumer.
Broadcast
A broadcast queue will deliver a message to all consumers.
Trait Implementations§
Source§impl Clone for SyndicationMode
impl Clone for SyndicationMode
Source§fn clone(&self) -> SyndicationMode
fn clone(&self) -> SyndicationMode
Returns a duplicate of the value. Read more
1.0.0 · 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 SyndicationMode
impl Debug for SyndicationMode
Source§impl Default for SyndicationMode
impl Default for SyndicationMode
Source§fn default() -> SyndicationMode
fn default() -> SyndicationMode
Returns the “default value” for a type. Read more
Source§impl PartialEq for SyndicationMode
impl PartialEq for SyndicationMode
impl Copy for SyndicationMode
impl Eq for SyndicationMode
impl StructuralPartialEq for SyndicationMode
Auto Trait Implementations§
impl Freeze for SyndicationMode
impl RefUnwindSafe for SyndicationMode
impl Send for SyndicationMode
impl Sync for SyndicationMode
impl Unpin for SyndicationMode
impl UnwindSafe for SyndicationMode
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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