Enum pg_async::PgSchedulingMode [] [src]

pub enum PgSchedulingMode {
    AnythingGoes,
    PinToConnection(u8),
}

Affects the placement of the operation.

Variants

The operation can be run on any connection, retried and rescheduled to another connection.

The op must only run on the connection with the given number (0-based). If the connection is not available (the server is down or inaccessible) then the operation might stay in the queue forever.

Trait Implementations

impl Debug for PgSchedulingMode
[src]

Formats the value using the given formatter.

impl Default for PgSchedulingMode
[src]

Returns the "default value" for a type. Read more