pub enum PgAutoscaleMode {
Off,
On,
Warn,
}Expand description
The automatic PG scaling mode of the pool.
Variants§
Trait Implementations§
Source§impl Clone for PgAutoscaleMode
impl Clone for PgAutoscaleMode
Source§fn clone(&self) -> PgAutoscaleMode
fn clone(&self) -> PgAutoscaleMode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PgAutoscaleMode
impl Debug for PgAutoscaleMode
Source§impl Default for PgAutoscaleMode
impl Default for PgAutoscaleMode
Source§fn default() -> PgAutoscaleMode
fn default() -> PgAutoscaleMode
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PgAutoscaleMode
impl<'de> Deserialize<'de> for PgAutoscaleMode
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 PartialEq for PgAutoscaleMode
impl PartialEq for PgAutoscaleMode
Source§fn eq(&self, other: &PgAutoscaleMode) -> bool
fn eq(&self, other: &PgAutoscaleMode) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PgAutoscaleMode
impl Serialize for PgAutoscaleMode
impl StructuralPartialEq for PgAutoscaleMode
Auto Trait Implementations§
impl Freeze for PgAutoscaleMode
impl RefUnwindSafe for PgAutoscaleMode
impl Send for PgAutoscaleMode
impl Sync for PgAutoscaleMode
impl Unpin for PgAutoscaleMode
impl UnsafeUnpin for PgAutoscaleMode
impl UnwindSafe for PgAutoscaleMode
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