#[non_exhaustive]pub enum LoadBalanceHosts {
Disable,
Random,
}
Expand description
Load balancing configuration.
This is a 1:1 copy of the PgLoadBalanceHosts
enumeration.
This is duplicated here in order to add support for the
serde::Deserialize
trait which is required for the serde
support.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Disable
Make connection attempts to hosts in the order provided.
Random
Make connection attempts to hosts in a random order.
Trait Implementations§
Source§impl Clone for LoadBalanceHosts
impl Clone for LoadBalanceHosts
Source§fn clone(&self) -> LoadBalanceHosts
fn clone(&self) -> LoadBalanceHosts
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for LoadBalanceHosts
impl Debug for LoadBalanceHosts
Source§impl<'de> Deserialize<'de> for LoadBalanceHosts
impl<'de> Deserialize<'de> for LoadBalanceHosts
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<LoadBalanceHosts> for LoadBalanceHosts
impl From<LoadBalanceHosts> for LoadBalanceHosts
Source§fn from(cb: LoadBalanceHosts) -> Self
fn from(cb: LoadBalanceHosts) -> Self
Converts to this type from the input type.
Source§impl PartialEq for LoadBalanceHosts
impl PartialEq for LoadBalanceHosts
Source§impl Serialize for LoadBalanceHosts
impl Serialize for LoadBalanceHosts
impl Copy for LoadBalanceHosts
impl Eq for LoadBalanceHosts
impl StructuralPartialEq for LoadBalanceHosts
Auto Trait Implementations§
impl Freeze for LoadBalanceHosts
impl RefUnwindSafe for LoadBalanceHosts
impl Send for LoadBalanceHosts
impl Sync for LoadBalanceHosts
impl Unpin for LoadBalanceHosts
impl UnwindSafe for LoadBalanceHosts
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