pub enum PgSchedulingMode {
AnythingGoes,
PinToConnection(u8),
}
Expand description
Affects the placement of the operation.
Variants§
AnythingGoes
The operation can be run on any connection, retried and rescheduled to another connection.
PinToConnection(u8)
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§
Source§impl Debug for PgSchedulingMode
impl Debug for PgSchedulingMode
Source§impl Default for PgSchedulingMode
impl Default for PgSchedulingMode
Source§fn default() -> PgSchedulingMode
fn default() -> PgSchedulingMode
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PgSchedulingMode
impl RefUnwindSafe for PgSchedulingMode
impl Send for PgSchedulingMode
impl Sync for PgSchedulingMode
impl Unpin for PgSchedulingMode
impl UnwindSafe for PgSchedulingMode
Blanket Implementations§
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more