Enum oracle::aq::MessageDeliveryMode
source · [−]pub enum MessageDeliveryMode {
Persistent,
Buffered,
PersistentOrBuffered,
}
Expand description
Delivery mode used for filtering messages when dequeuing messages from a queue
Warning: The type is unstable. It may be changed incompatibly by minor version upgrades.
Variants
Persistent
Dequeue only persistent messages from the queue. This is the default mode.
Buffered
Dequeue only buffered messages from the queue.
PersistentOrBuffered
Dequeue both persistent and buffered messages from the queue.
Trait Implementations
sourceimpl Clone for MessageDeliveryMode
impl Clone for MessageDeliveryMode
sourcefn clone(&self) -> MessageDeliveryMode
fn clone(&self) -> MessageDeliveryMode
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for MessageDeliveryMode
impl Debug for MessageDeliveryMode
impl StructuralPartialEq for MessageDeliveryMode
Auto Trait Implementations
impl RefUnwindSafe for MessageDeliveryMode
impl Send for MessageDeliveryMode
impl Sync for MessageDeliveryMode
impl Unpin for MessageDeliveryMode
impl UnwindSafe for MessageDeliveryMode
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more