pub enum QueueDurability {
NonDurable,
Durable,
}
Expand description
The durability of a queue.
Variants§
NonDurable
A non-durable queue will be deleted when the broker is restarted.
Durable
A durable queue will survive a broker restart.
Trait Implementations§
Source§impl Clone for QueueDurability
impl Clone for QueueDurability
Source§fn clone(&self) -> QueueDurability
fn clone(&self) -> QueueDurability
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 QueueDurability
impl Debug for QueueDurability
Source§impl Default for QueueDurability
impl Default for QueueDurability
Source§fn default() -> QueueDurability
fn default() -> QueueDurability
Returns the “default value” for a type. Read more
Source§impl PartialEq for QueueDurability
impl PartialEq for QueueDurability
impl Copy for QueueDurability
impl Eq for QueueDurability
impl StructuralPartialEq for QueueDurability
Auto Trait Implementations§
impl Freeze for QueueDurability
impl RefUnwindSafe for QueueDurability
impl Send for QueueDurability
impl Sync for QueueDurability
impl Unpin for QueueDurability
impl UnwindSafe for QueueDurability
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