Enum mimir::enums::ODPIVisibility[][src]

#[repr(u32)]
pub enum ODPIVisibility { Immediate, OnCommit, }

This enumeration identifies the visibility of messages in advanced queuing.

Variants

The message is not part of the current transaction but constitutes a transaction of its own.

The message is part of the current transaction. This is the default value.

Trait Implementations

impl Clone for ODPIVisibility
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for ODPIVisibility
[src]

impl Debug for ODPIVisibility
[src]

Formats the value using the given formatter. Read more

impl Eq for ODPIVisibility
[src]

impl Hash for ODPIVisibility
[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 ODPIVisibility
[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