Enum mimir::enums::ODPIMessageDeliveryMode[][src]

#[repr(u32)]
pub enum ODPIMessageDeliveryMode { NotSet, Persistent, Buffered, PersistentOrBuffered, }

This enumeration identifies the delivery mode used for filtering messages when dequeuing messages from a queue.

Variants

Not set.

Dequeue only persistent messages from the queue. This is the default mode.

Dequeue only buffered messages from the queue.

Dequeue both persistent and buffered messages from the queue.

Trait Implementations

impl Clone for ODPIMessageDeliveryMode
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for ODPIMessageDeliveryMode
[src]

impl Debug for ODPIMessageDeliveryMode
[src]

Formats the value using the given formatter. Read more

impl Eq for ODPIMessageDeliveryMode
[src]

impl Hash for ODPIMessageDeliveryMode
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl PartialEq for ODPIMessageDeliveryMode
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations